test SOUP_AUTH_DOMAIN_REMOVE_PATH
[platform/upstream/libsoup.git] / ChangeLog
1 2008-01-18  Dan Winship  <danw@gnome.org>
2
3         * tests/server-auth-test.c: test SOUP_AUTH_DOMAIN_REMOVE_PATH
4
5 2008-01-18  Dan Winship  <danw@gnome.org>
6
7         * configure.in: require glib 2.15.3, not 2.15.0, since
8         AM_PATH_GLIB_2_0 didn't know about gio until post-2.15.2. Pointed
9         out by Matthew Barnes, #510216.
10
11 2008-01-18  Dan Winship  <danw@gnome.org>
12
13         * libsoup/soup-auth-domain.c
14         (soup_auth_domain_set_generic_auth_callback):
15         (soup_auth_domain_check_password): add a new generic auth callback
16         that can be used with any subclass to do cleartext password
17         checking against messages. Suggested by Mathias Hasselmann.
18
19         * libsoup/soup-auth-domain-basic.c: Implement generic auth
20
21         * libsoup/soup-auth-domain-digest.c: Implement generic auth.
22         (soup_auth_domain_digest_evil_check_password): Gone, use the
23         generic version now.
24
25 2008-01-17  Dan Winship  <danw@gnome.org>
26
27         * libsoup/soup-auth-digest.c (soup_auth_digest_compute_hex_urp)
28         (soup_auth_digest_compute_hex_a1)
29         (soup_auth_digest_compute_response): cast the second arg to
30         g_checksum_update to (guchar *) to avoid warnings
31
32 2008-01-16  Dan Winship  <danw@gnome.org>
33
34         * libsoup/soup-headers.c (soup_headers_parse_status_line): Deal
35         with Shoutcast servers, which return "ICY 200 OK", but are
36         otherwise straight HTTP/1.0. #502325, Wouter Cloetens.
37
38         * tests/header-parsing.c (resptests): add a test for it
39
40 2008-01-16  Dan Winship  <danw@gnome.org>
41
42         * libsoup/soup-auth-manager.c (authorize_handler, etc): Allow the
43         session authenticate signal to be handled asynchronously, by
44         pausing the message and then authenticating the auth later.
45         (auth_type_compare_func): make this work. oops.
46         (extract_challenge): plug leak
47
48         * libsoup/soup-auth-manager-ntlm.c: Make this work async too.
49
50         * libsoup/soup-headers.c (soup_header_parse_list):
51         (soup_header_parse_param_list): plug leaks
52
53         * tests/auth-test.c (do_async_auth_test): test async auth
54
55         * docs/reference/client-howto.xml (Handling Authentication):
56         mention async auth
57
58 2008-01-16  Dan Winship  <danw@gnome.org>
59
60         * configure.in: Bomb out if glib 2.15.0 isn't found.
61         (AM_PATH_GLIB_2_0 doesn't do this itself.)
62
63 2008-01-15  Dan Winship  <danw@gnome.org>
64
65         * libsoup/soup-auth-manager-ntlm.c: Replaces SoupConnectionNTLM;
66         now works as a SoupSession::request_started watcher.
67
68         * libsoup/soup-connection.c: remove the no-longer-needed
69         "authenticate" signal
70
71         * libsoup/soup-session.c: Use a SoupAuthManagerNTLM if USE_NTLM is
72         set. Remove connection-authenticate-signal references.
73
74 2008-01-15  Dan Winship  <danw@gnome.org>
75
76         * Merge libsoup-2.4 branch to trunk
77         
78 2008-01-15  Dan Winship  <danw@gnome.org>
79
80         * libsoup/soup-dns.c (resolve_status): Fix the logic here
81
82 2008-01-15  Dan Winship  <danw@gnome.org>
83
84         * docs/reference/porting-2.2-2.4.xml: add a few more updates
85
86 2008-01-15  Dan Winship  <danw@gnome.org>
87
88         * libsoup/soup-auth-digest.c: Use GChecksum for MD5
89
90         * libsoup/soup-md5-utils.[ch]: gone
91
92 2008-01-15  Dan Winship  <danw@gnome.org>
93
94         * libsoup/soup-server.c (soup_server_run_async):
95         (soup_server_quit): Don't ref/unref the server here. It doesn't
96         match the way other things work. #494128, Mathias Hasselmann.
97
98 2008-01-14  Dan Winship  <danw@gnome.org>
99
100         * libsoup/soup-address.h:
101         * libsoup/soup-auth-domain-basic.h:
102         * libsoup/soup-auth-domain-digest.h:
103         * libsoup/soup-auth-domain.h:
104         * libsoup/soup-auth.h:
105         * libsoup/soup-logger.h:
106         * libsoup/soup-message.h:
107         * libsoup/soup-server.h:
108         * libsoup/soup-session-async.h:
109         * libsoup/soup-session-sync.h:
110         * libsoup/soup-session.h:
111         * libsoup/soup-socket.h: Add padding for future expansion to class
112         structs
113
114 2008-01-14  Dan Winship  <danw@gnome.org>
115
116         * libsoup/soup-uri.c: Add more documentation.
117         (soup_uri_is_https): gone, replaced by SOUP_URI_SCHEME_HTTP /
118         SOUP_URI_SCHEME_HTTPS
119         (soup_uri_new): allow passing NULL to get back an "empty" SoupURI.
120         (soup_uri_to_string): rename just_path to just_path_and_query, to
121         avoid fooling people.
122         (soup_uri_decode, soup_uri_normalize): Change these to return the
123         decoded/normalized string rather than modifying it in place.
124         (soup_uri_set_scheme, etc): provide setters for SoupURI parts.
125         (soup_uri_set_query_from_form): set uri->query via
126         soup_form_encode_urlencoded().
127
128 2008-01-14  Dan Winship  <danw@gnome.org>
129
130         * configure.in: require glib 2.15.0, and gio
131
132         * libsoup/soup-dns.c (soup_dns_lookup_resolve)
133         (soup_dns_lookup_resolve_async): Add GCancellables, and support
134         cancellation of DNS lookups.
135         (resolve_address, resolve_name): If we get a DNS failure (eg,
136         because we're disconnected from the network), don't cache that
137         result, just try again next time someone asks. [#508593]
138
139         * libsoup/soup-address.c (soup_address_resolve_async)
140         (soup_address_resolve_sync): Add GCancellables, pass them to
141         soup-dns.
142
143         * libsoup/soup-socket.c (soup_socket_connect_async)
144         (soup_socket_connect_sync): Add GCancellables and implement
145         cancellation.
146         (soup_socket_start_ssl, soup_socket_start_proxy_ssl)
147         (soup_socket_read, soup_socket_read_until, soup_socket_write): add
148         GCancellables, though these routines don't actually implement
149         cancellation yet.
150         (soup_socket_disconnect): Don't close() the socket if someone is
151         doing I/O on it, as that creates a race condition. (The fd number
152         might be quickly recycled.) Instead, keep the socket open but
153         dead, via shutdown().
154
155 2008-01-14  Benjamin Otte  <otte@gnome.org>
156
157         * libsoup/soup-socket.c: (soup_socket_class_init): clarify docs for
158         new-connection signal.
159
160 2008-01-14  Dan Winship  <danw@gnome.org>
161
162         * tests/test-utils.c: renamed from apache-wrappers and expanded.
163         (test_init): do option parsing and general setup
164         (test_cleanup): print error count and do cleanup
165         (debug_printf): define here rather than in each test, and rename
166         from dprintf [#501631]
167         (soup_test_server_new): create a SoupServer, optionally in its own
168         thread, and clean it up when exiting.
169         (soup_test_session_new): create a SoupSession, optionally with
170         an attached SoupLogger (if requested via command line)
171         
172         * tests/*.c: use test-utils
173
174 2008-01-13  Dan Winship  <danw@gnome.org>
175
176         * libsoup/soup-logger.c: New HTTP debug logging object. (Based on
177         E2K_DEBUG and its clones.)
178
179         * libsoup/soup-message.c (soup_message_class_init)
180         (soup_message_add_header_handler)
181         (soup_message_add_status_code_handler): Change things around a
182         little; remove the "requeuing or cancelling the message stops
183         signal emission" rule, and instead make that be a feature of just
184         the header and status code handlers. (Makes the basic signal
185         handlers behave more predictably.)
186
187 2008-01-11  Dan Winship  <danw@gnome.org>
188
189         * libsoup/soup-auth-domain.c (soup_auth_domain_set_filter):
190         * libsoup/soup-auth-domain-basic.c
191         (soup_auth_domain_basic_set_auth_callback):
192         * libsoup/soup-auth-domain-digest.c
193         (soup_auth_domain_digest_set_auth_callback):
194         * libsoup/soup-message.c (soup_message_cleanup_response)
195         (soup_message_set_flags, soup_message_set_http_version)
196         (soup_message_set_uri, soup_message_set_status)
197         (soup_message_set_status_full): 
198         * libsoup/soup-message-client-io.c (parse_response_headers): 
199         * libsoup/soup-message-server-io.c (parse_request_headers):
200         Call g_object_notify() when changing properties.        
201
202         * libsoup/soup-session.c (soup_session_class_init): bump the
203         default value of SOUP_SESSION_MAX_CONNS_PER_HOST down to 2, per
204         RFC 2616.
205
206         * libsoup/soup-message-body.c (soup_buffer_copy): When copying a
207         TEMPORARY buffer, keep a reference to the copy, so that a second
208         copy will get that same buffer, rather than actually copying it
209         again.
210
211         * libsoup/soup-types.h: remove SoupMessageFilter, which doesn't
212         exist any more
213
214 2008-01-07  Dan Winship  <danw@gnome.org>
215
216         * libsoup/soup-session.c (soup_session_class_init): Change
217         request_started signal to have a SoupSocket as its last parameter.
218
219         * libsoup/soup-server.c: Fix request_* signals to all be (server,
220         msg, client) rather than (server, client, msg).
221
222 2008-01-07  Dan Winship  <danw@gnome.org>
223
224         * docs/reference/porting-2.2-2.4.xml: Notes on porting from 2.2 to
225         2.4
226
227 2008-01-07  Dan Winship  <danw@gnome.org>
228
229         * libsoup/*.c: Move gtk-doc stuff from docs/reference/tmpl/ to the
230         C files themselves. Some updates.
231
232         * docs/reference/Makefile.am: fix (kludge?) this up to not require
233         tmpl/ to exist
234
235         * docs/reference/client-howto.xml: 
236         * docs/reference/server-howto.xml: update
237
238 2008-01-06  Dan Winship  <danw@gnome.org>
239
240         * libsoup/soup-soap-message.c:
241         * libsoup/soup-soap-response.c: For the second time, remove SOAP
242         support from libsoup... These APIs are not really all that helpful
243         in the grand scheme of SOAPiness, and are only used by the
244         Evolution GroupWise backend, which can just import this code and
245         integrate it better there.
246
247         * libsoup/soup-misc.c (soup_xml_real_node): 
248         * libsoup/soup-xmlrpc.c: Move soup_xml_real_node out of soup-misc
249         to soup-xmlrpc, and make it private. libxml is no longer exposed
250         in the public API.
251
252 2008-01-06  Dan Winship  <danw@gnome.org>
253
254         * libsoup/soup-date.c (soup_date_new_from_now): new method to
255         generate a date relative to now.
256         (soup_date_new, etc): document SoupDate methods
257
258         * libsoup/soup-server.c (got_headers): set Date header, as
259         required by RFC 2616
260
261 2008-01-06  Dan Winship  <danw@gnome.org>
262
263         * libsoup/soup-server.c (got_headers): if raw_paths isn't set,
264         decode the request's uri->path before doing anything else
265         (soup_server_class_init): add "raw-paths" property, to tell
266         SoupServer to NOT decode the Request-URI path.
267
268         * libsoup/soup-auth-domain.c (soup_auth_domain_covers): Revert
269         earlier path-decoding change; that happens at the SoupServer level
270         now.
271
272 2008-01-06  Dan Winship  <danw@gnome.org>
273
274         * libsoup/soup-message-body.c (soup_buffer_get_type): Register
275         SoupBuffer as a boxed type.
276
277         * libsoup/soup-message.c (soup_message_class_init): Use
278         SOUP_TYPE_BUFFER in got_chunk signal definition
279
280         * libsoup/soup-server.c (soup_client_context_get_type): Register
281         SoupClientContext as a pointer type
282         (soup_server_class_init): use SOUP_TYPE_CLIENT_CONTEXT in signal
283         definitions.
284
285         * libsoup/soup-marshal.list: clean this up
286
287 2008-01-06  Dan Winship  <danw@gnome.org>
288
289         * libsoup/soup-server.c (SoupClientContext): Make this opaque.
290         (soup_client_context_get_socket)
291         (soup_client_context_get_auth_domain)
292         (soup_client_context_get_auth_user): New accessors
293         (soup_server_class_init): Make the signals take a
294         SoupClientContext rather than a SoupSocket.
295         (start_request, check_auth, call_handler, request_finished): Clean
296         these up by using a SoupClientContext to communicate between them.
297         (soup_server_add_handler): tweak the argument order to match the
298         gtk standard (callback, user_data, destroynotify).
299
300 2008-01-06  Dan Winship  <danw@gnome.org>
301
302         * libsoup/soup-address.c: remove the "dns_result" signal, which
303         was just an implementation detail of soup_address_resolve_async().
304
305 2008-01-06  Dan Winship  <danw@gnome.org>
306
307         * libsoup/*.c: misc documentation updates/gtk-doc fixes
308
309         * libsoup/soup-server.c: finally start documenting this properly.
310
311         * libsoup/soup-status.h (SoupStatusClass): kill this, since
312         soup_message_add_status_class_handler() is gone now.
313
314         * libsoup/soup-status.c (soup_status_get_phrase): Update docs to
315         explain that you probably don't want to use this.
316
317         * libsoup/soup-misc.h (SOUP_SSL_ERROR, SoupSSLError): Move these
318         here, since soup-ssl.h isn't installed.
319
320         * docs/references: start updating this...
321
322 2008-01-04  Dan Winship  <danw@gnome.org>
323
324         * libsoup/soup-message-body.c (soup_buffer_new)
325         (soup_message_body_append): Reorder the arguments to match
326         soup_message_set_request/response, so it's not confusing.
327
328         * libsoup/soup-message.c (wrote_chunk): remove the "chunk" arg
329         from the signal, as it turns out to be *in*convenient, since most
330         callers use this signal to mean "need another chunk", so they want
331         it to have the same prototype as "wrote_headers", which means
332         "need first chunk".
333
334 2008-01-04  Dan Winship  <danw@gnome.org>
335
336         * libsoup/soup-auth-domain.c: add documentation
337         (soup_auth_domain_set_filter): take a GDestroyNotify, for better
338         bindability
339
340         * libsoup/soup-auth-domain-basic.c:
341         * libsoup/soup-auth-domain-digest.c: Add documentation. Replace
342         authentication signals with more-easily-bindable authentication
343         callbacks (with GDestroyNotifys).
344         (soup_auth_domain_digest_evil_check_password): Add this for the
345         benefit of code that depends on being able to do the equivalent
346         of the old soup_server_auth_check_passwd().
347
348 2008-01-02  Dan Winship  <danw@gnome.org>
349
350         * libsoup/soup-message-body.h (SoupMessageBody): add data and
351         length parameters like SoupBuffer, to make this easier for callers
352         to use.
353
354         * libsoup/soup-message-body.c (soup_message_body_append)
355         (soup_message_body_append_buffer)
356         (soup_message_body_truncate): Update body->length
357         (soup_message_body_flatten): Fill in body->data (and NUL-terminate
358         it as an added bonus).
359
360         * libsoup/soup-message.c (got_body): flatten the newly-gotten
361         body.
362         (soup_message_get_request, soup_message_get_response): gone
363         
364         * libsoup/soup-message-client-io.c (get_request_headers): 
365         * libsoup/soup-message-server-io.c (get_response_headers): 
366         * libsoup/soup-soap-message.c (soup_soap_message_parse_response):
367         * tests/*.c: simplify
368
369 2008-01-02  Dan Winship  <danw@gnome.org>
370
371         * libsoup/Makefile.am (soup_headers): oops, move soup-auth.h here
372
373 2008-01-02  Dan Winship  <danw@gnome.org>
374
375         * libsoup/soup-form.c: new HTML-form-related methods (just URI
376         decoding/encoding at the moment).
377
378         * libsoup/soup-server.h (SoupServerCallback): change the prototype
379         to include the decoded path and query rather than the undecoded
380         URI.
381
382         * libsoup/soup-server.c (call_handler): %-decode the URI path
383         before looking up a handler. Decode query if available. Pass path
384         and query to the callback.
385
386         * libsoup/soup-auth-domain.c (soup_auth_domain_covers): fix this
387         to %-decode the URI path before testing it
388
389         * libsoup/soup-message-body.c (soup_message_body_append): allow
390         0-length appends
391
392         * tests/query-test.c: URI query parsing test
393
394 2008-01-02  Dan Winship  <danw@gnome.org>
395
396         * libsoup/soup-uri.c:
397         * libsoup/soup-uri.h: Change all the "const SoupURI *" to just
398         "SoupURI *", since the const is just there to be annoying.
399
400         * */*.c: update
401
402 2008-01-02  Dan Winship  <danw@gnome.org>
403
404         * libsoup/soup-message-body.c (soup_message_body_get_length)
405         (soup_message_body_get_chunk): Use goffset rather than gsize for
406         references to the entire size of the message body. (SoupBuffer
407         still uses gsize, so individual chunks can only be G_MAXSIZE
408         long.)
409         
410         * libsoup/soup-message-headers.c
411         (soup_message_headers_get_content_length):
412         (soup_message_headers_set_content_length): Likewise, use goffset.
413
414 2008-01-02  Dan Winship  <danw@gnome.org>
415
416         * libsoup/soup-message-headers.c (soup_message_headers_get):
417         Renamed from soup_message_headers_find, and with new behavior; now
418         multiple headers with the same name are automatically merged
419         together into a single comma-separated value, to ensure that apps
420         treat multivalued headers the same regardless of how upstream
421         servers generate them.
422         (soup_message_headers_find_nth): no longer needed/wanted
423
424         * libsoup/soup-auth-manager.c: Update to deal with
425         SoupMessageHeaders change. (Ugh.)
426
427         * tests/header-parsing.c: Update multiple-values test, and undo a
428         change that mistakenly got committed while debugging something
429         earlier.
430
431 2008-01-01  Dan Winship  <danw@gnome.org>
432
433         * libsoup/soup-auth-manager.c:
434         * libsoup/soup-dns.c: 
435         * libsoup/soup-gnutls.c: 
436         * libsoup/soup-message.c: 
437         * libsoup/soup-message-io.c: 
438         * libsoup/soup-message-queue.c: 
439         * libsoup/soup-misc.c: 
440         * libsoup/soup-path-map.c: 
441         * libsoup/soup-server.c: 
442         * libsoup/soup-session.c: 
443         * libsoup/soup-session-sync.c: 
444         * libsoup/soup-socket.c: Use g_slice.
445
446 2008-01-01  Dan Winship  <danw@gnome.org>
447
448         * libsoup/soup-session.c (soup_session_cancel_message): add a
449         "status_code" argument rather than having the caller set the
450         status code separately, to prevent a race condition.
451
452 2008-01-01  Dan Winship  <danw@gnome.org>
453
454         * libsoup/soup-session.c (soup_session_queue_message): change the
455         callback type to include the SoupSession as a parameter as well.
456
457         * *.c: update
458
459 2007-12-31  Dan Winship  <danw@gnome.org>
460
461         * libsoup/soup-session.c (soup_session_class_init): change
462         the "authenticate" signal to include a SoupAuth rather than its
463         components, and to have a "retrying" parameter rather than
464         separating "authenticate" and "reauthenticate".
465
466         * libsoup/soup-connection.c (soup_connection_class_init): Likewise
467
468         * libsoup/soup-auth-manager.c (authenticate_auth): update
469
470         * libsoup/soup-auth.c: make various attributes into gobject
471         properties.
472         (soup_auth_is_for_proxy): check whether an auth is plain or proxy
473         (soup_auth_get_host): get the hostname associated with an auth
474
475         * libsoup/soup-auth-ntlm.c: dummy class used by SoupConnectionNTLM
476         in the authenticate signal
477
478         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): update for
479         authenticate signals changes; use a fake SoupAuthNTLM to assist.
480
481 2007-12-20  Dan Winship  <danw@gnome.org>
482
483         * libsoup/soup-message.c (soup_message_add_header_handler)
484         (soup_message_add_status_code_handler): Make these be wrappers
485         around g_signal_connect() rather than having a completely separate
486         system.
487         (soup_message_class_init): improve signal docs. Use
488         "got_foo_signal_wrapper" to wrap the got-foo signals.
489         (got_foo_signal_wrapper): Wraps the marshaller for the got-foo
490         signals and cancels the signal emission if the message gets
491         cancelled or requeued.
492         (got_informational, got_headers, got_chunk, got_body): remove
493         no-longer-needed default implementations.
494
495         * libsoup/soup-message-handlers.c: gone
496
497         * tests/ntlm-test.c (do_message): Simplify now that callback
498         processing doesn't happen in two separate phases.
499
500 2007-12-20  Dan Winship  <danw@gnome.org>
501
502         * libsoup/soup-auth-domain.c:
503         * libsoup/soup-auth-domain-basic.c:
504         * libsoup/soup-auth-domain-digest.c: New server-side auth system.
505
506         * libsoup/soup-server.c: remove SoupServerAuth / SoupAuthContext
507         stuff, add SoupAuthDomain support.
508         (SoupServerCallbackFn): improve the args here
509         (SoupClientContext): renamed from SoupServerContext and made less
510         redundant
511
512         * libsoup/soup-server-auth.c: gone!
513
514         * libsoup/soup-auth-digest.c (soup_auth_digest_parse_algorithm)
515         (soup_auth_digest_get_algorithm, soup_auth_digest_parse_qop)
516         (soup_auth_digest_get_qop, soup_auth_digest_compute_hex_urp)
517         (soup_auth_digest_compute_hex_a1)
518         (soup_auth_digest_compute_response): New routines shared between
519         client-side and server-side digest auth.
520
521         * tests/server-auth-test.c: test server-side auth, using curl for
522         the client side
523
524         * configure.in: check for curl, for server-auth-test
525
526 2007-12-20  Dan Winship  <danw@gnome.org>
527
528         * libsoup/soup-headers.c (soup_header_parse_list)
529         (soup_header_parse_quality_list): New methods to parse list-type
530         headers (with optional qvalues) correctly.
531         (soup_header_parse_param_list): Rename to match the other methods,
532         and update the semantics a bit.
533         (soup_header_contains): Correctly check for a token in a list
534
535         * libsoup/soup-message.c (soup_message_is_keepalive):
536         * libsoup/soup-message-client-io.c (get_request_headers):
537         * libsoup/soup-message-server-io.c (parse_request_headers): Use
538         soup_header_contains() with Connection headers.
539
540         * tests/header-parsing.c (do_qvalue_tests): add
541         soup_header_parse_quality_list() test
542
543 2007-12-20  Dan Winship  <danw@gnome.org>
544
545         * libsoup/soup-auth-manager.c: Move auth-related code from
546         SoupSession and SoupAuth here, and make various cleanups and
547         beginnings of cleanups.
548
549         * libsoup/soup-session.c: lots of stuff moved to
550         soup-auth-manager.c
551
552         * libsoup/soup-auth.c (soup_auth_new_from_headers): partly moved
553         to soup-auth-manager.c, partly renamed to soup_auth_new().
554         (soup_auth_update): new method to update an existing auth based on
555         a new WWW-Authenticate/Proxy-Authenticate header. Also replaces
556         the old "construct" method.
557
558         * libsoup/soup-auth-digest.c (update): Implement. If the new auth
559         has stale=true, don't invalidate the auth, just update the nonce.
560         (get_authorization): add a header handler to the message to catch
561         Authentication-Info/Proxy-Authentication-Info headers so that if
562         there's a nextnonce, we can start using it. #471380.
563
564         * libsoup/soup-auth-basic.c (update): Implement. (Updating an
565         existing Basic auth always invalidates it.)
566
567         * tests/http.conf.in:
568         * tests/auth-test.c: add a test for digest nonce handling
569
570 2007-12-20  Dan Winship  <danw@gnome.org>
571
572         * libsoup/soup-path-map.c: New type representing a sparse
573         path->something mapping
574
575         * libsoup/soup-server.c: Use SoupPathMap to record handlers. Make
576         SoupServerHandler a private type.
577         (soup_server_new): Rewrite this to just be a thin wrapper, and put
578         all of the code into a constructor override. #491653
579         (soup_server_add_handler): Turn the "unregister" arg into a
580         GDestroyNotify, for better bindability.
581
582 2007-12-19  Dan Winship  <danw@gnome.org>
583
584         * libsoup/soup-server.c: define new request_started, request_read,
585         request_finished, and request_aborted signals, for finer-grained
586         tracking than normal handlers allow.
587         (check_auth): split this out of call_handler, and run it
588         immediately after "got_headers", not "got_body", so that we can
589         preemptively reject "Expect: 100-continue" messages that will
590         require auth.
591
592         * libsoup/soup-message-io.c (io_write, io_read): Fix up
593         100-continue processing
594
595         * tests/continue-test.c: new test of client/server 100-continue
596         processing
597
598 2007-12-19  Dan Winship  <danw@gnome.org>
599
600         * libsoup/soup-socket.c: Cleanup. Remove the "connect_result"
601         signal. Make local_address and remote_address
602         into (construct-only) properties.
603         (soup_socket_connect_async, soup_socket_connect_sync): Replace
604         soup_socket_connect. _async takes a callback+user_data (like the
605         old soup_socket_client_new_async), but doesn't implement the
606         callback in terms of a connect_result signal.
607         (soup_socket_client_new_async, soup_socket_client_new_sync): Gone.
608         (Unused since the async_context addition anyway). Replaced by the
609         new construct properties and connect methods.
610         (soup_socket_read, soup_socket_read_until, soup_socket_write):
611         Make these actually take a GError rather than doing an ugly hack
612         to preserve the old API.
613         (SOUP_SOCKET_FLAG_NODELAY, SOUP_SOCKET_FLAG_REUSEADDR)
614         (SOUP_SOCKET_FLAG_CLOEXEC): kill these off (all three are always
615         TRUE now); SoupSocket is libsoup's socket API; it's not
616         necessarily intended to be generically useful for everyone.
617
618         * *.c: Update for SoupSocket changes
619
620 2007-12-19  Dan Winship  <danw@gnome.org>
621
622         * libsoup/soup-server-message.c: Kill!
623
624         * libsoup/soup-message-server-io.c (parse_request_headers):
625         Generate the full request URL from the socket's data, since we no
626         longer have soup_server_message_get_server().
627
628         * libsoup/soup-server.c (request_finished, call_handler)
629         (start_request, new_connection): update
630
631 2007-12-19  Dan Winship  <danw@gnome.org>
632
633         * libsoup/soup-message-headers.c: Add some more fields to
634         SoupMessageHeaders, and start caching the parsed values of certain
635         important headers.
636         (soup_message_headers_get/set_encoding): replaces old SoupMessage
637         methods, and only deals with the declared transfer encoding, not
638         the wire encoding.
639         (soup_message_headers_get/set_content_length): Handle
640         Content-Length.
641         (soup_message_headers_get_expectations): Handle Expect. (Replaces
642         the SOUP_MESSAGE_EXPECT_CONTINUE flag).
643
644         * libsoup/soup-message.c (soup_message_get_request_encoding):
645         (soup_message_get_response_encoding):
646         (soup_message_set_response_encoding): replaced by
647         SoupMessageHeaders methods.
648
649         * libsoup/soup-message-client-io.c:
650         * libsoup/soup-message-server-io.c:
651         * libsoup/soup-message-io.c: Update for SoupMessageHeaders changes
652         with encoding/content-length stuff.
653
654 2007-12-19  Dan Winship  <danw@gnome.org>
655
656         * libsoup/soup-message-body.c (SoupMessageBody): new opaque type
657         for request/response bodies allowing less hacky handling of
658         chunked encoding.
659         (SoupBuffer): refcounted buffer type
660
661         * libsoup/soup-message.h (SoupMessage): turn request and response
662         members into SoupMessageBody.
663         (SoupOwnership, SoupDataBuffer): gone, replaced by
664         SoupMessageBody/SoupBuffer.
665
666         * libsoup/soup-message.c (soup_message_wrote_chunk)
667         (soup_message_got_chunk): add the chunk as a signal param rather
668         than having it be visible in msg->request/response.
669         (soup_message_add_chunk, soup_message_add_final_chunk)
670         (soup_message_pop_chunk): replaced by SoupMessageBody methods now.
671
672 2007-12-19  Dan Winship  <danw@gnome.org>
673
674         * libsoup/soup-xmlrpc.c:
675         * libsoup/soup-value-utils.c: Oops. Change the API a bunch so this
676         works on x86; apparently I was doing illegal things with va_lists
677         before that only work on x86_64.
678
679 2007-12-14  Dan Winship  <danw@gnome.org>
680
681         * libsoup/soup-message.c: use GObject properties for SoupMessage
682         fields.
683
684         * libsoup/soup-message-server-io.c: 
685         * libsoup/soup-soap-message.c: update for that
686
687 2007-12-14  Dan Winship  <danw@gnome.org>
688
689         * libsoup/soup-uri.c: Rename from SoupUri to SoupURI. Use the
690         slice allocator and register as a boxed type.
691         (SoupURI): Rename "protocol" field to "scheme" and "passwd" to
692         "password". Make scheme an interned string. Replace
693         SOUP_PROTOCOL_HTTPS with soup_uri_is_https().
694
695         * *.c: update
696         
697 2007-12-14  Dan Winship  <danw@gnome.org>
698
699         * libsoup/Makefile.am: Use glib-mkenums to build soup-enum-types.c
700         and soup-enum-types.h
701
702         * libsoup/soup-address.h (SoupAddressFamily): redo this definition
703         again, to make glib-mkenums happy.
704
705 2007-12-13  Dan Winship  <danw@gnome.org>
706
707         * libsoup/soup-xmlrpc.c: New easier-to-use and
708         easier-to-do-language-bindings-of XML-RPC code.
709
710         * libsoup/soup-xmlrpc-message.c: 
711         * libsoup/soup-xmlrpc-response.c: gone
712
713         * libsoup/soup-value-utils.c: Utilites for working with
714         GValueArray, and GHashTables of GValues, used by soup-xmlrpc.
715
716         * tests/getbug.c: 
717         * tests/xmlrpc-test.c: Update to use new XML-RPC stuff
718
719 2007-12-13  Dan Winship  <danw@gnome.org>
720
721         * libsoup/soup-date.c: Make a SoupDate type, and redo in terms of
722         that rather than struct tm and time_t. Also be much more liberal
723         when parsing.
724
725         * libsoup/soup-xmlrpc-message.c (soup_xmlrpc_message_write_datetime): 
726         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_datetime):
727         Use SoupDate.
728
729         * tests/date.c: Use SoupDate, test parsing lots more formats
730
731         * tests/xmlrpc-test.c: update for SoupDate
732
733 2007-12-12  Dan Winship  <danw@gnome.org>
734
735         * libsoup/soup-message.c: 
736         * libsoup/soup-message-private.h: Remove SoupMessageStatus,
737         msg->status, and soup_message_io_* from the public API, as they
738         all really belong to the session, not the message. (For now
739         they've just been moved to soup-message-private.h, but some day
740         they'll be fully refactored away from SoupMessage.)
741
742         * libsoup/soup-server.c (soup_server_pause_message)
743         (soup_server_unpause_message): 
744         * libsoup/soup-session.c (soup_session_pause_message)
745         (soup_session_unpause_message): session/server-level methods to
746         replace soup_message_io_pause() and soup_message_io_unpause().
747
748         * libsoup/soup-server-message.c: Remove some unused methods
749
750         * */*.c: Update
751
752 2007-12-05  Dan Winship  <danw@gnome.org>
753
754         * libsoup/soup-connection.c:
755         * libsoup/soup-session.c: replace message filters with a
756         "request_started" signal
757
758         * libsoup/soup-message-filter.c: gone
759
760         * libsoup/soup-types.h (SOUP_MAKE_INTERFACE): no longer needed
761
762 2007-12-05  Dan Winship  <danw@gnome.org>
763
764         * libsoup/soup-uri.c: Update for RFC 3986 changes, bgo 266516, and
765         general conformance
766         (soup_uri_get_protocol): match protocols case-insensitively
767         (soup_uri_new_with_base): Don't fully %-decode the fragment,
768         query, and path, but do %-decode anything which isn't supposed to
769         be encoded. Recognize IPv6 address literals. Use stricter
770         "../"-stripping rules on the path. Reject URIs with junk between
771         the port number and the path.
772         (soup_uri_to_string): Update for the fact that the host might be
773         an IPv6 literal, and for the fact that path, query, and fragment
774         are now pre-escaped.
775         (soup_uri_equal): compare hostnames case-insensitively
776         (uri_encoded_char): update to match RFC 3986
777         (append_uri_encoded): use uppercase hex letters as recommended by
778         RFC 3986.
779         (soup_uri_normalize): decode only %-escapes that don't belong
780         there.
781
782         * docs/reference/tmpl/soup-uri.sgml: add some more SoupUri docs
783
784         * tests/uri-parsing.c: Add new tests from RFC 3986, RFC 2732, RFC
785         2616, bgo 266516, and elsewhere. Update some tests to match new
786         parsing/unparsing rules.
787
788 2007-12-05  Dan Winship  <danw@gnome.org>
789
790         * libsoup/soup-message.c (soup_message_new)
791         (soup_message_new_from_uri): g_intern_string() the method name
792         rather than assuming it's static. Also remove the NULL==GET
793         assumption.
794
795         * libsoup/soup-method.c:
796         * libsoup/soup-method.h: remove the SOUP_METHOD_ID_* macros, and
797         have the SOUP_METHOD_* macros return interned strings
798
799         * libsoup/soup-server.h (SoupServerContext): remove method_id
800         field.
801
802         * libsoup/soup-server-message.c (finalize): no longer needed,
803         since smsg->method is now an interned string just like with a
804         normal SoupMessage.
805
806         * libsoup/soup-soap-message.c (soup_soap_message_new_from_uri):
807         remove NULL==GET assumption
808
809         * *.c: update
810
811 2007-12-05  Dan Winship  <danw@gnome.org>
812
813         * libsoup/soup-message.h (SoupHTTPVersion): rename (from
814         SoupHttpVersion)
815
816         * libsoup/soup-message-headers.c: New opaque type representing
817         message headers, and new methods that work on it. Uses an array
818         rather than a hash table, to preserve header ordering as required
819         by RFC 2616. (Also fixes the API wart that
820         "soup_message_get_header", etc, did not actually take a
821         SoupMessage.)
822
823         * libsoup/soup-message.c: Kill off old header-manipulating
824         methods.
825
826         * libsoup/soup-headers.c (soup_headers_parse_request): return a
827         guint rather than gboolean, so we can properly return
828         SOUP_STATUS_HTTP_VERSION_NOT_SUPPORTED where appropriate. Also fix
829         up HTTP-Version parsing to conform with the RFC.
830         (soup_headers_parse_status_line): Likewise update HTTP-Version
831         parsing.
832         
833         * libsoup/soup-message-server-io.c (parse_request_headers): set
834         return status appropriately on parse errors
835
836         * tests/header-parsing.c: update / add more tests
837
838         * *.c: update
839
840 2007-12-05  Dan Winship  <danw@gnome.org>
841
842         * libsoup/soup-misc.c: remove deprecated base64 methods
843
844         * tests/auth-test.c (identify_auth): oops, update to use
845         g_base64_decode.
846
847 2007-12-05  Dan Winship  <danw@gnome.org>
848
849         * libsoup/Makefile.am (libsoupinclude_HEADERS): remove
850         soup-connection.h and soup-message-queue.h
851
852         * libsoup/soup-types.h: remove SoupConnection and SoupMessageQueue
853         which are no longer public
854
855         * libsoup/soup.h: sync this to reality for the first time in years
856
857         * libsoup/soup-session.c (soup_session_get_queue): Add this, for
858         subclasses, as the queue is no longer a public part of the session
859         struct.
860
861         * libsoup/soup-message.h:
862         * libsoup/soup-message-private.h: Move soup_message_send_request()
863         and soup_message_receive_request() to soup-message-private.h,
864         remove soup_message_send_request_internal().
865
866         * libsoup/soup-session-private.h: Move "protected" SoupSession
867         methods (soup_session_get_connection,
868         soup_session_try_prune_connection) here from soup-session.h
869         Add soup_session_get_queue.
870
871 2007-12-05  Dan Winship  <danw@gnome.org>
872
873         * configure.in: bump version to 2.3.0 and SOUP_API_VERSION to 2.4,
874         and drop AGE/CURRENT/REVISION all to 0.
875
876         * libsoup/Makefile.am: Rename library to libsoup-2.4.la
877
878         (start of libsoup-2.4 branch)
879
880 2007-11-26  Dan Winship  <danw@gnome.org>
881
882         * configure.in: 2.2.104
883
884         * NEWS: update
885
886 2007-11-21  Dan Winship  <danw@gnome.org>
887
888         * libsoup/soup-message-io.c (soup_message_io_cleanup): make this
889         non-static.
890
891         * libsoup/soup-message.c (finalize): Use soup_message_io_cleanup()
892         rather than soup_message_io_stop(), to avoid leaks when finalizing
893         an unfinished message. (Another part of #498509, Wouter Cloetens.)
894
895 2007-11-20  Dan Winship  <danw@gnome.org>
896
897         Fix up SOUP_SESSION_ASYNC_CONTEXT. #498509, Wouter Cloetens
898
899         * libsoup/soup-message-io.c (soup_message_io_unpause): don't leak
900         the async_context
901
902         * libsoup/soup-server.c (soup_server_quit): disconnect the
903         "new_connection" handler.
904         (soup_server_get_async_context): Convenience method to return the
905         server's async_context.
906
907         * libsoup/soup-server-message.c: don't circularly ref the server,
908         there's no need anyway.
909
910         * libsoup/soup-session.c (soup_session_get_async_context):
911         Convenience method to return the session's async_context.
912
913         * libsoup/soup-session-async.c (queue_message): call run_queue in
914         the session's async_context, not the main context.
915         (send_message): don't leak the async_context
916
917         * libsoup/soup-session-sync.c (queue_message_thread): don't leak
918         the async_context
919
920         * tests/context-test.c: test that SOUP_SESSION_ASYNC_CONTEXT works
921         and doesn't leak
922
923 2007-11-20  Dan Winship  <danw@gnome.org>
924
925         * libsoup/soup-connection.c (soup_connection_connect_async): don't
926         leak the SoupAddress.
927
928         * libsoup/soup-dns.c (soup_dns_lookup_resolve_async): fix a leak
929         when re-looking up an address
930
931         * libsoup/soup-session.c (soup_session_abort): close all
932         connections in addition to cancelling messages (needed because
933         connections currently end up holding a ref on their session,
934         preventing them from being destroyed).
935
936         * tests/auth-test.c:
937         * tests/ntlm-test.c:
938         * tests/proxy-test.c:
939         * tests/pull-api.c:
940         * tests/ssl-test.c:
941         * tests/xmlrpc-test.c: clean up more memory on exit, to help find
942         leaks in the library
943
944         * tests/libsoup.supp: add a zillion new suppressions so we
945         can use --leak-resolution=med
946
947 2007-11-16  Dan Winship  <danw@gnome.org>
948
949         * libsoup/soup-message-io.c (read_body_chunk): Fix the guards
950         around the got_chunk emission so that it doesn't get messed up if
951         you pause the I/O from the got_chunk handler. (#452280, Marco
952         Barisione).
953         (soup_message_io_pause, soup_message_io_unpause): Update docs
954         again; these are now allowed with client-side I/O as well. Fix
955         unpause() to unpause asynchronously on async sockets.
956         
957         * libsoup/soup-session-async.c (send_message): Iterate session's
958         async_context, not the default main context.
959
960         * tests/pull-api.c: Test/sample of creating a pull-style API using
961         SoupSessionAsync.
962
963         * tests/index.txt: new file to act as DirectoryIndex for the
964         tests. (In particular, pull-api wants this to be largeish.)
965
966 2007-10-28  Dan Winship  <danw@gnome.org>
967
968         * configure.in: 2.2.103
969
970         * NEWS: update
971
972 2007-10-28  Dan Winship  <danw@gnome.org>
973
974         * libsoup/soup-server.c (start_request, request_finished): ref the
975         socket around the processing of the message, since otherwise it
976         might already be freed when request_finished runs. #459896.
977
978         * libsoup/soup-message-io.c (soup_message_io_pause)
979         (soup_message_io_unpause): Clarify the docs here; this is for
980         server-side use only. Inspired by #452280.
981
982         * docs/reference/server-howto.xml: You need to watch the
983         "finished" signal on the message if using soup_message_io_pause()
984         or chunked encoding, because the client might disconnect while
985         you're paused. Clarification inspired by #471385.
986
987         * tests/simple-proxy.c (client_msg_failed): Fix this to DTRT since
988         server-howto.xml points to it as an example of what to do.
989
990 2007-10-28  Dan Winship  <danw@gnome.org>
991
992         * libsoup/soup-session.c (finalize): free proxy-related stuff
993
994         * libsoup/soup-session-async.c (idle_run_queue): clean up the weak
995         pointer. (From the dev repo, but identical to a patch from Rob
996         Bradford in #484988.)
997
998         * tests/*.c: fix leaks
999
1000 2007-10-28  Dan Winship  <danw@gnome.org>
1001
1002         * tests/auth-test.c:
1003         * tests/date.c:
1004         * tests/header-parsing.c:
1005         * tests/ntlm-test.c:
1006         * tests/proxy-test.c:
1007         * tests/uri-parsing.c:
1008         * tests/xmlrpc-test.c: Make these less verbose by default (to make
1009         it easier to see what failed when a "make check" fails).
1010
1011 2007-10-15  Dan Winship  <danw@gnome.org>
1012
1013         * configure.in: 2.2.102
1014
1015         * NEWS: update
1016
1017 2007-10-08  Dan Winship  <danw@gnome.org>
1018
1019         * libsoup/soup-nossl.c: Update for current soup-ssl.h prototypes
1020
1021         * tests/proxy-test.c (run_test): wrap https tests in #if HAVE_SSL
1022
1023 2007-10-05  Dan Winship  <danw@gnome.org>
1024
1025         * configure.in: 2.2.101
1026
1027         * NEWS: update
1028
1029         * tests/httpd.conf.in: 
1030         * tests/Makefile.am: 
1031         * tests/ssl-test.c: srcdir != builddir fixes
1032
1033 2007-10-05  Dan Winship  <danw@gnome.org>
1034
1035         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): Don't crash
1036         if the authenticate callback returns a username and no password
1037         (even though it's not supposed to do that). #480987
1038
1039 2007-09-24  Dan Winship  <danw@gnome.org>
1040
1041         * libsoup/soup-auth.h (SoupAuth): add "realm" field to the struct.
1042         (SoupAuthClass) remove "get_realm" virtual method.
1043
1044         * libsoup/soup-auth.c (soup_auth_new_from_header_list): Parse the
1045         WWW-Authenticate/Proxy-Authenticate header here, set realm, and
1046         pass the params hash to the construct method.
1047         (soup_auth_get_info): Return an identifier for the auth:
1048         "SCHEME:REALM"
1049
1050         * libsoup/soup-auth-basic.c:
1051         * libsoup/soup-auth-digest.c: update
1052
1053         * libsoup/soup-session.c (invalidate_auth, update_auth_internal):
1054         use soup_auth_get_info().
1055
1056 2007-09-24  Dan Winship  <danw@gnome.org>
1057
1058         * libsoup/soup-date.c (soup_date_parse): minor rfc850-date parsing
1059         improvement suggested by RFC2616 19.3.
1060
1061         * libsoup/soup-headers.c (soup_headers_parse_request): allow
1062         erroneous trailing whitespace after HTTP version. #475169
1063
1064         * libsoup/soup-message-server-io.c (parse_request_headers): fix
1065         the parsing of the Host header to assume it already includes the
1066         port (which it should; the only reason this ever worked is because
1067         SoupUri ignores the second port number when parse_request_headers
1068         generates a URL like "http://localhost:9999:9999/").
1069
1070         * tests/header-parsing.c (reqtests): add a test for #475169
1071
1072 2007-09-23  Dan Winship  <danw@gnome.org>
1073
1074         * libsoup/soup-message.c (soup_message_class_init): remove a
1075         mysterious partial sentence in the ::wrote-chunk docstring.
1076         #458116
1077
1078         * docs/reference/libsoup-sections.txt: Remove documentation of MD5
1079         methods, which are not public. #440092
1080
1081 2007-09-23  Dan Winship  <danw@gnome.org>
1082
1083         * libsoup/soup-message.c (soup_message_set_auth)
1084         (soup_message_set_proxy_auth): Only remove the Authorization /
1085         Proxy-Authorization header from the message if it was previously
1086         set by soup_message_set_auth(). (Eg, not if it was added by
1087         SoupConnectionNTLM.) #471389
1088
1089         * libsoup/soup-connection-ntlm.h: fix a search-and-replace-o
1090
1091         * tests/ntlm-test.c: Simple NTLM regression test; doesn't really
1092         test the crypto/encoding bits, just that the right headers are
1093         being sent at the right times.
1094
1095 2007-09-14  Dan Winship  <danw@gnome.org>
1096
1097         Make "make check" pass on Fedora 7:
1098
1099         * configure.in: update apache/php tests with additional filenames
1100
1101         * tests/httpd.conf.in: updates for configure.in changes and
1102         slightly-more-recent apache
1103
1104         * tests/ssl-test.c (start_writing): fix uninitialized struct field
1105         (main): start server after setting up client since otherwise
1106         there's a race condition since soup_gnutls_init() isn't actually
1107         thread-safe. (FIXME)
1108
1109         * tests/xmlrpc-server.php: rewrite to not use $HTTP_RAW_POST_DATA
1110         (which only exists if register_globals is set)
1111
1112 2007-06-01  Dan Winship  <danw@novell.com>
1113
1114         * libsoup/soup-message-filter.h (SOUP_IS_MESSAGE_FILTER_CLASS):
1115         fix. noted by "cascardo" on libsoup-list.
1116
1117 2007-05-16  Jonathon Jongsma  <jjongsma@gnome.org>
1118
1119         * libsoup/*.h: add G_BEGIN_DECLS / G_END_DECLS to all installed
1120         headers so that libsoup can be used from C++ programs. #438776
1121
1122 2007-04-16  Dan Winship  <danw@novell.com>
1123
1124         * libsoup/soup-ssl.h: Make a real SoupSSLCredentials type rather
1125         than just using gpointer
1126
1127         * libsoup/soup-server.c (SoupServerPrivate): use it
1128
1129         * libsoup/soup-session.c (SoupSessionPrivate): use it
1130
1131         * libsoup/soup-gnutls.c: Use it, and consistently use "creds"
1132         rather than "cred" as the abbreviation for "credentials".
1133
1134         * docs/reference/libsoup-sections.txt:
1135         * docs/reference/tmpl/soup-misc.sgml: 
1136         * docs/reference/tmpl/soup-ssl.sgml: update
1137         
1138 2007-03-29  Dan Winship  <danw@novell.com>
1139
1140         * libsoup/soup-session-sync.c (queue_message): Implement this by
1141         sending the message (synchronously) in another thread and then
1142         queueing the callback back in the main thread.
1143
1144         * libsoup/soup-session.c (soup_session_queue_message): update docs
1145         to be more explicit about what thread the callback occurs in
1146
1147 2007-03-17  Dan Winship  <danw@novell.com>
1148
1149         * libsoup/soup-message.c (soup_message_set_auth)
1150         (soup_message_get_auth, soup_message_set_proxy_auth)
1151         (soup_message_get_proxy_auth): get/set auth/proxy_auth info for a
1152         message.
1153
1154         * libsoup/soup-session.c (add_auth): Use soup_message_set_auth and
1155         soup_message_set_proxy_auth.
1156         (update_auth_internal): Call soup_message_get_auth or
1157         soup_message_get_proxy_auth to determine the message's prior auth,
1158         rather than calling lookup_auth() again, since it isn't guaranteed
1159         to return the same thing now as it did when the message was
1160         originally sent. Fixes erroneous 401s when queuing multiple
1161         messages at once to an as-yet-unauthenticated-to server. #271540
1162
1163         * libsoup/soup-session-async.c (queue_message): don't run the
1164         queue right away, do it at idle time. Otherwise in some cases
1165         (especially errors), the message callbacks could be invoked before
1166         queue_message returns.
1167
1168         * tests/auth-test.c: add a regression test for #271540.
1169
1170 2007-03-17  Dan Winship  <danw@novell.com>
1171
1172         * configure.in: require glib 2.12. check for timegm().
1173
1174         * libsoup/soup-date.c (soup_mktime_utc): Use timegm if available.
1175         (soup_date_iso8601_parse): use g_time_val_from_iso8601. #337010,
1176         patch from Emmanuele Bassi.
1177
1178         * libsoup/soup-types.h: remove local copy of
1179         G_GNUC_NULL_TERMINATED since we now depend on a new-enough copy of
1180         glib.
1181
1182         * libsoup/soup-misc.c (soup_base64_encode_close)
1183         (soup_base64_encode_step, soup_base64_encode)
1184         (soup_base64_decode_step): Make these just be wrappers around the
1185         glib base64 methods. (For now; eventually they'll just go away.)
1186
1187         * libsoup/soup-auth-basic.c (authenticate): 
1188         * libsoup/soup-auth-digest.c (authenticate):
1189         * libsoup/soup-connection-ntlm.c (soup_ntlm_parse_challenge)
1190         (soup_ntlm_response): 
1191         * libsoup/soup-server-auth.c (soup_server_auth_new): 
1192         * libsoup/soup-soap-message.c (soup_soap_message_write_base64): 
1193         * libsoup/soup-xmlrpc-message.c
1194         (soup_xmlrpc_message_write_base64): 
1195         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_base64):
1196         Use glib base64 methods
1197
1198 2007-03-16  Dan Winship  <danw@novell.com>
1199
1200         * libsoup/soup-message.c (soup_message_get_response_encoding):
1201         update the handling of CONNECT: it has no response body by
1202         default, but does have a body if its headers say so.
1203
1204         * tests/proxy-test.c: test libsoup's behavior when talking to
1205         proxies.
1206
1207         * tests/httpd.conf.in: Load mod_proxy and mod_ssl, and add
1208         sections configuring them, for proxy-test
1209
1210         * configure.in: update the apache-module-dir-finding code to deal
1211         with the fact that some modules (eg, mod_ssl) might only be in the
1212         mpm-specific module dir, while others (eg, mod_php5) might only be
1213         in the generic module dir.
1214
1215 2007-03-12  Dan Winship  <danw@novell.com>
1216
1217         * tests/Makefile.am (INCLUDES): add $(LIBGNUTLS_CFLAGS) for
1218         ssl-test. #417617, patch from Elijah Newren.
1219
1220 2007-03-12  Dan Winship  <danw@novell.com>
1221
1222         * libsoup/soup-session-sync.c (wait_for_connection): if
1223         soup_connection_connect_sync() returns SOUP_STATUS_TRY_AGAIN, then
1224         try again. (Duh.) Fixes SSL-via-proxy-when-using-synchronous-I/O-
1225         where-the-proxy-closes-the-connection-when-returning-407. (Reported
1226         by Varadhan.)
1227
1228         * tests/get.c: Rewrite to use soup_session_send_message rather
1229         than soup_session_queue_message, and add a "-s" flag to use
1230         SoupSessionSync rather than SoupSessionAsync (so we can test bugs
1231         in the sync code paths).
1232
1233 2007-03-08  Dan Winship  <danw@novell.com>
1234
1235         * libsoup/soup-gnutls.c (do_handshake): don't return
1236         G_IO_STATUS_AGAIN if we're doing blocking I/O; just keep retrying
1237         until the handshake is complete.
1238         (soup_gnutls_read, soup_gnutls_write): if we get
1239         GNUTLS_E_REHANDSHAKE, call do_handshake() immediately rather than
1240         returning G_IO_STATUS_AGAIN; if the socket is blocking then
1241         G_IO_STATUS_AGAIN is wrong, and if the socket is non-blocking, we
1242         might already need to return SOUP_SSL_ERROR_HANDSHAKE_NEEDS_WRITE
1243         or SOUP_SSL_ERROR_HANDSHAKE_NEEDS_READ.
1244
1245         #415402, based on a patch from Jacob Berkman.
1246
1247         * tests/ssl-test.c: basic ssl test. In particular, tests that
1248         rehandshake requests are handled correctly during both synchronous
1249         and asynchronous I/O. Might eventually test other stuff too...
1250
1251         * configure.in: 
1252         * tests/Makefile.am: updates for ssl-test
1253
1254 2007-02-19  Dan Winship  <danw@novell.com>
1255
1256         * configure.in: Get gcrypt libs/cflags.
1257
1258         * libsoup/Makefile.am (INCLUDES, libsoup_2_2_la_LIBADD): add
1259         gcrypt flags. Patch from "Cygwin Ports Maintainer", #384498
1260
1261 2007-02-12  Dan Winship  <danw@novell.com>
1262
1263         * configure.in: 2.2.100
1264
1265 2007-02-12  Dan Winship  <danw@novell.com>
1266
1267         * libsoup/soup-headers.c (soup_headers_parse_status_line): Fix
1268         this to handle "\0"-terminated status lines (eg, from WebDAV
1269         responses), like the docs say it does. #406997
1270         (soup_headers_parse): Balance that out by rejecting internal "\0"s
1271         here.
1272         (soup_headers_parse_request, soup_headers_parse_response): Update
1273         docs to warn that @dest may be modified even on error. (This was
1274         always true, it just wasn't documented.)
1275
1276 2007-01-16  Dan Winship  <danw@novell.com>
1277
1278         * tests/header-parsing.c (do_request_tests, do_response_tests):
1279         initialize "errors" to 0. duh. Pointed out by Michael Wolf.
1280
1281 2007-01-08  Dan Winship  <danw@novell.com>
1282
1283         * configure.in: 2.2.99
1284
1285         * NEWS: update
1286
1287 2007-01-06  Dan Winship  <danw@novell.com>
1288
1289         * libsoup/soup-headers.c (soup_headers_parse): Rewrite this to be
1290         easier to understand and more correct, and make the "str" param
1291         const rather than overwriting it during parsing.
1292         (soup_headers_parse_request, soup_headers_parse_response):
1293         Likewise, make "str" param const. Fix the doc comment to describe
1294         the correct constraint on str. Make the parsing slightly more
1295         lenient as per sections 4.1 and 19.3 of RFC 2616.
1296
1297         * tests/header-parsing.c: new regression test, for Request-Line,
1298         Status-Line, and message-header parsing.
1299
1300         Inspired by #391970 (crash in SoupServer when certain invalid
1301         requests are received).
1302
1303 2006-12-05  Dan Winship  <danw@novell.com>
1304
1305         * libsoup/soup-message.c (soup_message_set_uri): Remove the calls
1306         to soup_message_io_stop() here; the corresponding calls were
1307         needed back in the SoupContext days, but they are wrong now and
1308         cause async-redirects-to-other-hosts to fail. #382251. Also
1309         clarify docs with respect to soup_session_requeue_message().
1310
1311         * libsoup/soup-message-io.c (soup_message_io_stop): Clarify docs
1312
1313         * libsoup/soup-session.c (finalize): Free ssl_creds. Pointed out
1314         by Chris Austin.
1315
1316 2006-11-20  Dan Winship  <danw@novell.com>
1317
1318         * configure.in: 2.2.98
1319
1320         * NEWS: update
1321
1322 2006-11-20  Dan Winship  <danw@novell.com>
1323
1324         Patch from Andrew W. Nosenko:
1325
1326         * libsoup/soup-message-client-io.c (parse_response_headers): Avoid
1327         memory leak when parse_response_headers() is called on a message
1328         that has a 'reason_phrase' already for some reason.
1329
1330         * libsoup/soup-gnutls.c (soup_gnutls_free): Avoid memory leak:
1331         hostname was not freed.
1332         (soup_ssl_wrap_iochannel): Avoid memory leak: SoupGNUTLSChannel
1333         'chan' was not freed in case of initialization error. Avoid double
1334         close of the "real" (plain, non-ssl) channel FD.
1335         
1336         * libsoup/soup-socket.c (soup_socket_start_proxy_ssl): Avoid
1337         memory leak: the "real" (plain, non-ssl) GIOChannel was never
1338         "finally" unreffed (one more *_ref() than *_unref()) in case of
1339         ssl-wrapping.
1340
1341 2006-11-20  Dan Winship  <danw@novell.com>
1342
1343         * libsoup/soup-connection-ntlm.c (send_request): 
1344         * libsoup/soup-session-sync.c (queue_message): 
1345         * libsoup/soup-status.c (reason_phrases): Add some missing
1346         "static"s. Patch from Matthias Clasen, #376387
1347
1348         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_type)
1349         (soup_xmlrpc_value_get_string): <value>foo</value> should mean the
1350         same thing as <value><string>foo</string></value>. Pointed out by
1351         Todd Kulesza. #364490
1352
1353 2006-11-06  Dan Winship  <danw@novell.com>
1354
1355         * configure.in: Bump version to 2.2.97. Bump AGE and CURRENT for
1356         addition of soup_xml_real_node.
1357
1358         * NEWS: update
1359
1360 2006-11-06  Dan Winship  <danw@novell.com>
1361
1362         * libsoup/soup-misc.c (soup_xml_real_node): new method to find a
1363         "real" (ie, not comment or whitespace) xml node
1364
1365         * libsoup/soup-soap-response.c (parse_parameters) 
1366         (soup_soap_response_from_string) 
1367         (soup_soap_parameter_get_first_child) 
1368         (soup_soap_parameter_get_next_child): Use soup_xml_real_node.
1369         Based on a patch from Andrew W. Nosenko.
1370
1371         * libsoup/soup-xmlrpc-message.c (soup_xmlrpc_message_from_string):
1372         don't call xmlKeepBlanksDefault, which changes libxml's behavior
1373         globally! Instead, use soup_xml_real_node() when traversing the
1374         xml tree.
1375
1376         * libsoup/soup-xmlrpc-response.c
1377         (soup_xmlrpc_response_from_string): don't call
1378         xmlKeepBlanksDefault.
1379         (exactly_one_child): rewrite in terms of soup_xml_real_node()
1380         (which means it handles comments now as well)
1381         (soup_xmlrpc_value_get_struct)
1382         (soup_xmlrpc_value_array_get_iterator)
1383         (soup_xmlrpc_value_array_iterator_prev)
1384         (soup_xmlrpc_value_array_iterator_next): Use soup_xml_real_node.
1385
1386 2006-11-05  Dan Winship  <danw@novell.com>
1387
1388         * libsoup/soup-headers.c (soup_headers_parse_request): document
1389         this (in particular, point out that str+len must point to exactly
1390         the right place). Allow req_method and req_path to be NULL.
1391         (soup_headers_parse_status_line, soup_headers_parse_response):
1392         document. Also, change "status_phrase" argument to "reason_phrase"
1393         to match the spec. Inspired by #339889.
1394
1395 2006-11-03  Dan Winship  <danw@novell.com>
1396
1397         * libsoup/*.c: fix lots of warnings. Partially from patches from
1398         Andrew W. Nosenko, and also some fixes from libsoup-pre214-branch.
1399         
1400 2006-11-03  Dan Winship  <danw@novell.com>
1401
1402         * Makefile.am (uninstall-local): uninstall the pkgconfig file.
1403         Based on #356809 from Matthew Barnes.
1404
1405         * libsoup/soup-server.c (get_property): Fix leaks pointed out by
1406         Paolo Borelli. #351500
1407
1408         * libsoup/soup-uri.c (soup_uri_get_protocol): Fix an off by one
1409         pointed out by Andrew W. Nosenko.
1410
1411         * configure.in: Use pkgconfig to find gnutls. Remove old static
1412         linking stuff that was only needed for rcd.
1413
1414         * acinclude.m4: remove gnutls stuff
1415
1416         * libsoup.pc.in: Use Requires rather than putting xml/ssl
1417         dependencies directly into Libs/Cflags. From Mikhail Zabaluev.
1418         #343340.
1419
1420         * libsoup/Makefile.am (libsoup_2_2_la_LDFLAGS): fix build on
1421         cygwin. From "Cygwin Ports maintainer", #321827.
1422
1423 2006-07-24  Dan Winship  <danw@novell.com>
1424
1425         * configure.in: 2.2.96. bump AGE and CURRENT for new API
1426
1427         * NEWS: update
1428
1429         * libsoup/soup-xmlrpc-message.c (soup_xmlrpc_message_from_string):
1430         New, from Fernando Herrera, bug 348532.
1431
1432 2006-07-21  Dan Winship  <danw@novell.com>
1433
1434         * libsoup/soup-auth.c (soup_auth_new_from_header_list): if the
1435         constructed auth doesn't have a realm, it's invalid, as per RFC
1436         2617. Based on a patch from Nate Nielsen on libsoup-list.
1437         (soup_auth_get_realm): remove "if available" from docs; all auths
1438         always have a realm.
1439
1440         * libsoup/soup-message-server-io.c (get_response_headers): If the
1441         server handler set a Content-Length header on the message, don't
1442         add a second one. (Preserves compatibility with an old hacky way
1443         that people might have been handling HEAD from SoupServer.)
1444
1445         * README: update to mention mailing list and bugzilla
1446
1447         * HACKING: kill this since there's nothing here that isn't either
1448         obvious, or redundant with the README
1449
1450 2006-07-21  Dan Winship  <danw@novell.com>
1451
1452         * libsoup/soup-server-message.c (soup_server_message_init):
1453         initialize encoding to SOUP_TRANSFER_CONTENT_LENGTH rather than
1454         SOUP_TRANSFER_UNKNOWN, since SOUP_TRANSFER_UNKNOWN has never
1455         actually worked here, and so there was an undocumented requirement
1456         that you manually set the encoding on every response
1457         (which SoupServer itself was not doing on internal errors).
1458         Problem pointed out by Dennis Jacobfeuerborn on libsoup-list.
1459         (soup_server_message_set_encoding): reject the new
1460         SoupTransferEncoding values, for compatibility
1461
1462         * libsoup/soup-message.h (SoupTransferEncoding): Clarify that
1463         SOUP_TRANSFER_UNKNOWN is essentially an error value, since in the
1464         public API, it always has been, due to bugs. Add some new values,
1465         currently just for internal use: SOUP_TRANSFER_NONE (for cases
1466         like HEAD which never have a body), SOUP_TRANSFER_EOF (to replace
1467         SOUP_TRANSFER_UNKNOWN), and SOUP_TRANSFER_BYTERANGES (which isn't
1468         actually implemented yet).
1469
1470         * libsoup/soup-message.c (soup_message_get_request_encoding,
1471         soup_message_get_response_encoding): figure out the body encoding
1472         being used by the request/response, including all the tricky
1473         cases like HEAD/1xx/etc.
1474         (soup_message_is_keepalive): if the response encoding is
1475         SOUP_TRANSFER_EOF, then the message isn't keepalive.
1476
1477         * libsoup/soup-message-client-io.c (parse_response_headers): use
1478         soup_message_get_response_encoding.
1479
1480         * libsoup/soup-message-server-io.c (parse_request_headers): use
1481         soup_message_get_request_encoding.
1482         (get_response_headers): use both soup_server_message_get_encoding
1483         and soup_message_get_response_encoding, to properly distinguish
1484         between the wire encoding and the alleged-by-headers encoding
1485         (which differ for HEAD, etc).
1486
1487         * libsoup/soup-message-io.c (io_error, read_body_chunk):
1488         s/SOUP_TRANSFER_UNKNOWN/SOUP_TRANSFER_EOF/.
1489         (io_body_state): if encoding is SOUP_TRANSFER_NONE, jump right to
1490         SOUP_MESSAGE_IO_STATE_FINISHING.
1491
1492         * libsoup/soup-server.c (request_finished): Check
1493         soup_socket_is_connected() *before* soup_message_is_keepalive(),
1494         since the message will be invalid if the client unexpectedly
1495         dropped the connection.
1496
1497         * tests/simple-httpd.c (server_callback): handle HEAD requests.
1498         Remove no-longer-necessary soup_server_message_set_encoding()
1499         call.
1500
1501         * tests/get.c: add -d (debug) flag to print headers, and -h flag
1502         to do a HEAD rather than GET
1503
1504 2006-07-10  Dan Winship  <danw@novell.com>
1505
1506         * configure.in: 2.2.95.1, and bump SOUP_AGE/SOUP_CURRENT this
1507         time. Pointed out by Daniel Holbach.
1508         
1509 2006-07-10  Dan Winship  <danw@novell.com>
1510
1511         * configure.in: 2.2.95
1512
1513         * NEWS: update
1514
1515 2006-06-19  Dan Winship  <danw@novell.com>
1516
1517         * tests/Makefile.am (noinst_PROGRAMS): don't build xmlrpc-test
1518         unless we have apache/php/xmlrpc-epi. Fixes the build. #345342
1519
1520         * configure.in: fix some quoting
1521
1522 2006-06-14  Dan Winship  <danw@novell.com>
1523
1524         * configure.in: add tests for apache mod_php5 and xmlrpc-epi-php
1525
1526         * tests/xmlrpc-test.c: XML-RPC regression test
1527
1528         * tests/xmlrpc-server.php: PHP server for xmlrpc-test
1529
1530         * tests/httpd.conf.in: add php stuff
1531
1532         * tests/apache-wrapper.c (apache_cleanup): Use "graceful-stop"
1533         rather than "stop", so that it stops listening on the socket
1534         before exiting, so that we can immediately start another apache
1535         (eg, in "make check").
1536
1537         * libsoup/soup-date.c (soup_mktime_utc): Fix a bug in leap-year
1538         counting.
1539
1540         * libsoup/soup-xmlrpc-message.c
1541         (soup_xmlrpc_message_write_datetime): rename from
1542         "..._write_time", to make it consistent with the XML-RPC type name
1543         and the corresponding SoupXmlrpcResponse method. Also, fix it to
1544         use the same ISO 8601 format as the spec, and use the right value
1545         for the seconds field.
1546         (soup_xmlrpc_message_write_base64): Change the buf arg to a
1547         gconstpointer rather than a const char *.
1548
1549         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_base64):
1550         Return a GByteArray containing the decoded data, rather than
1551         the base64-encoded string.
1552         (soup_xmlrpc_value_dump_internal): Update for that (and don't
1553         leak it).
1554         (soup_xmlrpc_value_array_get_iterator,
1555         soup_xmlrpc_value_array_iterator_get_value): Make these actually
1556         work.
1557
1558 2006-06-12  Dan Winship  <danw@novell.com>
1559
1560         * configure.in: 2.2.94
1561
1562         * NEWS: update
1563
1564 2006-06-12  Dan Winship  <danw@novell.com>
1565
1566         * docs/reference/client-howto.xml: 
1567         * docs/reference/server-howto.xml: New client and server API
1568         tutorials.
1569
1570         * docs/reference/*: reorganize, regenerate, fill in some missing
1571         pieces, etc
1572
1573         * libsoup/soup-connection.c (soup_connection_new): document the
1574         varargs param
1575
1576         * libsoup/soup-date.h: sync prototypes to declarations for gtk-doc.
1577
1578         * libsoup/soup-headers.c (soup_headers_parse_response): fix typo
1579         in doc.
1580
1581 2006-06-12  Dan Winship  <danw@novell.com>
1582
1583         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_int,
1584         soup_xmlrpc_value_get_double): Further fixes from Brent Smith.
1585         #344458.
1586         (soup_xmlrpc_value_get_boolean): Similar fix, plus actually set
1587         the output parameter and make the return value match the other
1588         get_* methods.
1589
1590 2006-06-09  Dan Winship  <danw@novell.com>
1591
1592         * configure.in: Add tests for apache, output tests/httpd.conf
1593
1594         * tests/htdigest: 
1595         * tests/htpasswd: 
1596         * tests/httpd.conf.in: Apache 2.2 config files for auth-test
1597
1598         * tests/apache-wrapper.c (apache_init, apache_cleanup): functions
1599         to start/stop apache
1600
1601         * tests/auth-test.c: Use apache-wrapper functions to start a local
1602         apache process to test authentication against, since the auth-test
1603         tree at developer.ximian.com went missing a long time ago. #311825
1604
1605         * tests/Makefile.am (auth_test_SOURCES): use apache-wrapper.c
1606         (TESTS): include auth-test if HAVE_APACHE.
1607
1608         * libsoup/soup-session.c (lookup_auth): Fix this in the case of a
1609         URI pointing to a directory rather than a file.
1610
1611 2006-06-08  Dan Winship  <danw@novell.com>
1612
1613         * libsoup/soup-xmlrpc-response.c (soup_xmlrpc_value_get_int,
1614         soup_xmlrpc_value_get_double, soup_xmlrpc_value_get_boolean):
1615         Check return value of strtol/g_ascii_strtod correctly. #344222,
1616         patch from Brent Smith.
1617
1618 2006-06-07  Dan Winship  <danw@novell.com>
1619
1620         * libsoup/soup-xmlrpc-response.c
1621         (soup_xmlrpc_response_from_string): record whether or not the
1622         response was a fault.
1623         (soup_xmlrpc_response_is_fault): test that. #343973, patch from
1624         Brent Smith.
1625
1626 2006-05-29  Dan Winship  <danw@novell.com>
1627
1628         * configure.in: 2.2.93
1629
1630         * NEWS: update
1631
1632 2006-05-29  Dan Winship  <danw@novell.com>
1633
1634         * libsoup/soup-message-io.c (SoupMessageIOState): add a new state
1635         "FINISHING" which means "done I/O, but not yet done processing and
1636         cleanup" before "DONE" (which now always means "completely done").
1637         (soup_message_io_stop): disconnect the socket if the read state is
1638         "< FINISHING", not "!= DONE".
1639         (io_error): on an EOF-that-signals-end-of-data, set state to
1640         FINISHING and run io_read().
1641         (io_read, io_write): remove the g_return_if_fails from before.
1642         s/DONE/FINISHING/ in most places. In the FINISHING handler, stop
1643         listening for the readable/writable signal (eg, so we don't end up
1644         reading a following pipelined request), and set the state to DONE.
1645         (soup_message_io_unpause): Only reconnect the readable/writable
1646         signals if the io state isn't DONE. Guard the calls to
1647         io_read/io_write better so that it's safe to call this even after
1648         they are both DONE, since it may be easier for us to test that
1649         than for the caller to.
1650
1651         Fixes 334469, 342640, and another bug caused by the earlier
1652         workaround to 334469. Based on patches and analysis from William
1653         Jon McCann and Armin Bauer.
1654
1655         * tests/simple-proxy.c (main): add g_thread_init (NULL) to make
1656         this work again. (Pointed out by Alex Larsson)
1657
1658 2006-05-26  Dan Winship  <danw@novell.com>
1659
1660         * libsoup/soup-socket.c: #include <sys/time.h> for struct timeval.
1661         #342048
1662
1663         * libsoup/soup-connection.c (soup_connection_connect_sync): Start
1664         SSL after CONNECTing! Doh. Part of bnc #174255.
1665         (SoupConnectionMode): new enum for the three types of
1666         SoupConnection (direct, proxy, tunnel).
1667         (set_property): set priv->mode according to proxy_uri and
1668         conn_uri.
1669         (socket_connect_result, soup_connection_connect_sync): use
1670         priv->mode to decide whether or not to tunnel.
1671         (send_request): Only pass TRUE for is_proxy to
1672         soup_message_send_request if mode is PROXY, not if it's TUNNEL.
1673         (Also part of bnc #174255).
1674
1675 2006-05-26  Dan Winship  <danw@novell.com>
1676
1677         * libsoup/soup-message-io.c (soup_message_io_in_progress): tests
1678         if IO is currently in progress on a message.
1679
1680         * libsoup/soup-session-async.c (run_queue): don't process messages
1681         that are io_in_progress. #342545, fix based on analysis from Wang
1682         Xin. (In the future we may want to re-fix this by adding a
1683         REQUEUED message status separate from QUEUED.)
1684
1685 2006-05-22  Dan Winship  <danw@novell.com>
1686
1687         * libsoup/soup-session.c (cleanup_hosts): Don't free the hosts
1688         while holding host_lock; that's not allowed and can cause
1689         deadlock. #309867. Based on a patch from Veerapuram Varadhan for
1690         part of bnc #174255.
1691
1692 2006-04-10  Dan Winship  <danw@novell.com>
1693
1694         * configure.in: bump version to 2.2.92
1695
1696         * NEWS: update
1697
1698 2006-04-10  Dan Winship  <danw@novell.com>
1699
1700         * libsoup/soup-message-io.c (io_write, io_read): g_return_if_fail
1701         if these get called after the IO is done. This isn't supposed to
1702         happen, but apparently does. Workaround for #334469.
1703
1704         * libsoup/soup-auth-digest.c (qop_types, algorithm_types):
1705         NULL-terminate these so we don't crash when trying to parse an
1706         invalid value. (Flip side of the previous #328615 patch.)
1707
1708 2006-04-02  Dan Winship  <danw@novell.com>
1709
1710         * libsoup/soup-server-auth.c (soup_server_auth_context_challenge):
1711         Write out correct digest algorithm value. #328615.
1712
1713         * libsoup/soup-headers.c (soup_headers_parse_request): Rewrite
1714         Request-Line-parsing code to not have a lame max length. #335040.
1715
1716         * Makefile.am (install-data-local): Install the .pc file mode 644,
1717         not 755. #330878
1718
1719         * libsoup/soup-auth-digest.c:
1720         * libsoup/soup-auth.c:
1721         * libsoup/soup-message-client-io.c:
1722         * libsoup/soup-message-server-io.c:
1723         * libsoup/soup-message.c:
1724         * libsoup/soup-method.c:
1725         * libsoup/soup-server-auth.c:
1726         * tests/get.c: replace locale-ish strcasecmps with
1727         g_ascii_strcasecmp
1728
1729         * libsoup/*.c: fix most signed/unsigned mismatch warnings
1730
1731 2006-03-03  Dan Winship  <danw@novell.com>
1732
1733         * configure.in: bump version to 2.2.91.
1734
1735         * NEWS: Update
1736
1737 2006-03-03  Dan Winship  <danw@novell.com>
1738
1739         * libsoup/soup-dns.c (soup_dns_lookup_resolve_async): Take a
1740         GMainContext as well, and update the resolution code to dispatch
1741         each lookup result in the correct context.
1742
1743         * libsoup/soup-address.c (soup_address_resolve_async_full): New
1744         method that takes a GMainContext to pass to
1745         soup_dns_lookup_resolve_async.
1746
1747         * libsoup/soup-socket.c (soup_socket_connect): Use
1748         soup_address_resolve_async_full. Fixes a problem reported by Armin
1749         Bauer.
1750
1751         * configure.in: update to require glib 2.6, since apparently the
1752         code does.
1753
1754 2006-02-25  Veerapuram Varadhan <vvaradhan@novell.com>
1755
1756         * libsoup/soup-connection.c:
1757         * libsoup/soup-session.c:
1758         * libsoup/soup-socket.c: add a "timeout" property,
1759         which gets passed from server to socket, and session to connection
1760         to socket, allowing blocking non-responsive sync connections to 
1761         return.  Combination of "EAGAIN" && "Blocking" connection is treated
1762         as error and the connection will be terminated and the control 
1763         is returned to the caller immediately.
1764                 
1765 2006-02-02  Tor Lillqvist  <tml@novell.com>
1766
1767         * configure.in: Don't use getaddrinfo() etc or try to support IPv6
1768         on Windows, as they are present by default on XP only. We do want
1769         to support Windows 2000, too.
1770
1771 2005-12-21  Dan Winship  <danw@novell.com>
1772
1773         * libsoup/soup-date.c (soup_date_iso8601_parse): fix two bugs in
1774         the YYYYMMDD case.
1775
1776         * tests/date.c: add three more ISO 8601 cases, to exercise all the
1777         code paths.
1778
1779         #324671, from Emmanuele Bassi
1780         
1781 2005-11-25  Dan Winship  <danw@novell.com>
1782
1783         * README: sync to text on wiki, and point to wiki
1784
1785         * TODO: moved to http://live.gnome.org/LibSoup_2fToDo
1786
1787 2005-11-17  Dan Winship  <danw@novell.com>
1788
1789         * libsoup/soup-message-io.c (io_cleanup): clear priv->io_data
1790         right away, to protect against this being re-entered mid-cleanup
1791         (when we unref the connection). #321208, based on a patch from
1792         Jedy Wang.
1793
1794 2005-11-16  Dan Winship  <danw@novell.com>
1795
1796         * libsoup/soup-xmlrpc-message.c
1797         (soup_xmlrpc_message_start_member): add the "name" element to the
1798         struct member. #321362, patch from Sebastian Bauer.
1799
1800 2005-11-10  Dan Winship  <danw@novell.com>
1801
1802         * configure.in: bump version to 2.2.90. This will not be
1803         officially released, but once these patches have gotten some
1804         testing they may be pulled up to the gnome-2-12 branch.
1805
1806         * libsoup/soup-connection.c:
1807         * libsoup/soup-server.c: 
1808         * libsoup/soup-session.c: 
1809         * libsoup/soup-socket.c: add an "async-context" property,
1810         which gets passed from server to socket, and session to connection
1811         to socket, allowing async usage outside the main thread. Based on
1812         patches from Armin Bauer and Jürg Billeter.
1813
1814         * libsoup/soup-misc.c (soup_add_io_watch, soup_add_idle,
1815         soup_add_timeout): utility routines to add watches, idles, and
1816         timeouts to non-default GMainContexts.
1817
1818         * libsoup/soup-message-io.c (io_write): set the read state
1819         appropriately after writing a "100 Continue" response
1820         (io_read): More 100-Continue stuff. I don't think this is quite
1821         right so it will probably change again later.
1822
1823 2005-11-01  Dan Winship  <danw@novell.com>
1824
1825         * docs/reference/libsoup-docs.sgml: tell it to generate an index
1826
1827         * docs/reference/tmpl/*.sgml: regen with newer gtk-doc
1828
1829 2005-11-01  Dan Winship  <danw@novell.com>
1830
1831         * libsoup/soup-connection.c (set_current_request,
1832         clear_current_request): Cast the argument to
1833         g_object_add/remove_weak_pointer to the wrong type, to make gcc
1834         4.1 happy, because C is stupid and "void **" means "a pointer to a
1835         void *", not "a pointer to any kind of pointer".
1836
1837         * libsoup/soup-xmlrpc-response.c
1838         (soup_xmlrpc_value_dump_internal): fix gccism. #320349, from
1839         Roland Illig.
1840
1841 2005-10-27  Dan Winship  <danw@novell.com>
1842
1843         * libsoup/soup-socket.c (soup_socket_client_new_async,
1844         soup_socket_client_new_sync): unref the SoupAddress passed to
1845         soup_socket_connect to avoid a leak. Based on a patch from Wang
1846         Xin.
1847         (socket_read_watch, read_from_network, socket_write_watch,
1848         soup_socket_write): request and handle G_IO_ERR and G_IO_HUP
1849         events when polling, since poll() will return them whether or not
1850         you asked for them, but glib will ignore them unless you did,
1851         which will result in CPU suckage if such an error occurs. #319305,
1852         patch from Jonathan Matthew.
1853
1854 2005-10-27  Dan Winship  <danw@novell.com>
1855
1856         bgo #316313 / bnc #116762, and probably also bgo #318252
1857
1858         * libsoup/soup-message-io.c (soup_message_io_stop): clear io->conn
1859         after releasing it, to make sure we can't accidentally release it
1860         twice.
1861
1862         * libsoup/soup-connection.c (clear_current_request): Call
1863         soup_message_io_stop() on the cleared request.
1864
1865         * libsoup/soup-connection-ntlm.c (ntlm_authorize_post): do a
1866         little dance here to make sure the session can't queue another
1867         message on the connection while we're in the process of requeuing
1868         the original one.
1869
1870 2005-08-30  Tor Lillqvist  <tml@novell.com>
1871
1872         * libsoup-zip.in: Include documentation in developer zipfile.
1873
1874 2005-08-22  Dan Winship  <danw@novell.com>
1875
1876         * libsoup/soup-soap-message.c (soup_soap_message_class_init): Call
1877         g_type_class_add_private.
1878
1879         * configure.in: Bump to 2.2.6.1
1880
1881         * NEWS: update
1882
1883 2005-08-22  Dan Winship  <danw@novell.com>
1884
1885         * configure.in: Bump to 2.2.6. Bump SOUP_AGE and SOUP_CURRENT for
1886         soup_server_get_socket() addition.
1887
1888         * NEWS: update
1889
1890 2005-08-22  Dan Winship  <danw@novell.com>
1891
1892         * libsoup/soup-connection.c (set_current_request,
1893         clear_current_request): Fix g_object_add/remove_weak_pointer usage
1894         to prevent a crash when canceling a request. From Tambet.
1895
1896 2005-08-16  Dan Winship  <danw@novell.com>
1897
1898         Fix a connection leak reported by Tambet.
1899
1900         * libsoup/soup-connection.c (send_request): rather than tracking
1901         the message progress via signals, call
1902         soup_message_send_request_internal() and have it call
1903         soup_connection_release() when it's done.
1904         (request_restarted, request_done): gone
1905         (clear_current_request): handle disconnecting (if necessary) and
1906         updating last_used time here.
1907         (soup_connection_release): Call clear_current_request().
1908         (dispose): Call clear_current_request()
1909
1910         * libsoup/soup-message-client-io.c
1911         (soup_message_send_request_internal): New. Takes a SoupConnection
1912         in addition to the other args, and passes that on to
1913         soup-message-io.
1914
1915         * libsoup/soup-message-io.c (SoupMessageIOData): add a
1916         SoupConnection field.
1917         (io_cleanup): if io->conn is set, unref it.
1918         (soup_message_io_stop): if io->conn is set, and we ended in a
1919         clean state, call soup_connection_release() on it.
1920         (soup_message_io_client): Add a SoupConnection arg, which gets
1921         reffed and stored in io->conn.
1922
1923         * TODO: misc updates
1924
1925 2005-08-15  Dan Winship  <danw@novell.com>
1926
1927         * libsoup/soup-connection.h (soup_connection_new):
1928         * libsoup/soup-server.h (soup_server_new):
1929         * libsoup/soup-session-async.h (soup_session_async_new_with_options): 
1930         * libsoup/soup-session-sync.h (soup_session_sync_new_with_options): 
1931         * libsoup/soup-socket.h (soup_socket_new): use G_GNUC_NULL_TERMINATED.
1932
1933         * libsoup/soup-types.h (G_GNUC_NULL_TERMINATED): steal the
1934         definition of this from glib 2.8 for use when compiling against
1935         glib 2.6.
1936
1937 2005-08-15  Tambet Ingo  <tambet@ximian.com>
1938
1939         * libsoup/soup-socket.c (update_fdflags, set_property): Fix compilation
1940         errors.
1941
1942         * libsoup/soup-server.c (soup_server_get_listener): ditto.
1943
1944 2005-08-12  Dan Winship  <danw@novell.com>
1945
1946         * libsoup/soup-server.c (soup_server_get_listener): new method to
1947         get the server's listening socket.
1948
1949         * libsoup/soup-socket.c: add a new "cloexec" property, to set
1950         FD_CLOEXEC on the socket. Update everything for that.
1951
1952 2005-08-05  Dan Winship  <danw@novell.com>
1953
1954         * libsoup/soup-socket.c (finalize): Free priv->read_buf. From
1955         Tambet.
1956         (soup_socket_connect): Make sure that get_iochannel() gets called
1957         if the connect succeeds right away, or the socket will fail on
1958         the first read or write. [#312540]
1959
1960 2005-08-01  Dan Winship  <danw@novell.com>
1961
1962         * configure.in: drop version back down to 2.2.5 and
1963         SOUP_API_VERSION back to 2.2; due to various snafus, there has
1964         never yet been an official release of the 2.4 API and the GNOME
1965         2.12 betas have been shipping with libsoup 2.2 tarballs (while
1966         jhbuild has been using 2.4, with evolution and related packages
1967         having configure hacks to build against either). As there never
1968         ended up being any API-incompatible changes in the 2.4 series, we
1969         can just merge it back into the 2.2 series and kill off 2.4.
1970
1971         * NEWS: Copy in the 2.2-series news from the gnome-2-10 branch,
1972         and add new NEWS
1973
1974         * libsoup-zip.in: s/2.2/@SOUP_API_VERSION@/
1975
1976         * libsoup/Makefile.am (libsoupincludedir, lib_LTLIBRARIES,
1977         libsoup_2_2_la_LDFLAGS, libsoup_2_2_la_LIBADD,
1978         libsoup_2_2_la_SOURCES): s/4/2/ in all the places automake won't
1979         let us use a variable.
1980
1981 2005-08-01  Dan Winship  <danw@novell.com>
1982
1983         * libsoup/soup-md5-utils.c (soup_md5_final_hex): Finalize a
1984         SoupMD5Context and write out the digest in hex digits.
1985
1986         * libsoup/soup-auth-digest.c (authenticate, compute_response):
1987         * libsoup/soup-server-auth.c (check_digest_passwd): Use that,
1988         rather than duplicating the code in both places here.
1989
1990         Patch from Wim Lewis.
1991         
1992 2005-07-15  Dan Winship  <danw@novell.com>
1993
1994         * libsoup/soup-session.c (redirect_handler): Allow relative URIs,
1995         since some servers are lame. Based on a patch from Jean-Yves
1996         Lefort. [#270688]
1997
1998         * tests/uri-parsing.c: add some more tests to make sure that
1999         things that should be %-escaped do get %-escaped
2000
2001 2005-07-06  Tor Lillqvist  <tml@novell.com>
2002
2003         * libsoup/soup-date.c (soup_gmtime): Mention in the doc comment
2004         that gmtime() is thread-safe on Windows.
2005         (soup_date_generate): Use soup_gmtime() instead of gmtime_r().
2006
2007 2005-06-14  Dan Winship  <danw@novell.com>
2008
2009         * configure.in: check for gmtime_r
2010
2011         * libsoup/soup-date.c: date/time-manipulation functions
2012
2013         * libsoup/soup-xmlrpc-message.c: 
2014         * libsoup/soup-xmlrpc-response.c: XMLRPC message classes, from
2015         Mariano Suarez-Alvarez, Fernando Herrera, and Jeff Bailey.
2016         [#300227]
2017
2018         * tests/date.c: soup-date test code
2019
2020         * tests/getbug.c: XMLRPC test code. (Should be switched to use
2021         bugzilla.gnome.org once bgo supports XMLRPC.)
2022
2023         * TODO: XMLRPC is implemented now (but shares the problem with
2024         SOAP that the API is not very good).
2025
2026 2005-06-14  Dan Winship  <danw@novell.com>
2027
2028         * libsoup/*.[ch]: add/fix gtk-doc comments, make functions match
2029         prototypes, etc
2030
2031         * docs/reference/*: update, fix, etc
2032
2033 2005-06-13  Tor Lillqvist  <tml@novell.com>
2034
2035         * configure.in: Check also for inet_ntop(). Pre-cache knowledge
2036         that we do have inet_pton() and inet_ntop() on Windows (because we
2037         implement them ourselves in soup-dns.c).
2038         
2039         * libsoup/soup-dns.c (inet_pton, inet_ntop): Fix the Win32
2040         implementations, they were completely bogus.
2041         (soup_dns_ntop): Make it compile if HAVE_INET_NTOP.
2042
2043 2005-06-08  Dan Winship  <danw@novell.com>
2044
2045         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): Fix this to
2046         use just the domain name for the domain, not the whole
2047         DOMAIN\username. Based on a patch by Jeroen Hautekeete in #306877.
2048
2049 2005-05-26  Dan Winship  <danw@novell.com>
2050
2051         * libsoup/soup-session.c (cleanup_hosts): lock host_lock around
2052         this, since it can be called from set_property(). Possible fix for
2053         bnc #81641.
2054
2055 2005-05-05  Dan Winship  <danw@novell.com>
2056
2057         * docs/reference/Makefile.am (SCANGOBJ_OPTIONS): Use
2058         --type-init-func to force g_thread_init to be called. [#302674]
2059
2060 2005-04-18  Tor Lillqvist  <tml@novell.com>
2061
2062         * configure.in: Call AC_LIBTOOL_WIN32_DLL. Check for Win32, set
2063         Automake conditional OS_WIN32. Pre-cache information that we do
2064         have getaddrinfo(), getnameinfo(), and IPv6 on Win32. (The tests
2065         wouldn't notice as they don't include the necessary headers or
2066         link with -lws2_32. Easiest to just pre-cache it.)
2067
2068         * libsoup-zip.in: New file, to build zipfile-based distribution of
2069         libsoup for Win32. 
2070
2071         * Makefile.am (EXTRA_DIST)
2072         * configure.in (AC_OUTPUT): Add libsoup-zip(.in).
2073
2074         * libsoup/Makefile.am: Use -no-undefined on Win32. Link with
2075         WinSock library -lws2_32.
2076         
2077         * libsoup/soup-portability.h: New file. On Unix it includes the
2078         traditional BSD socket etc headers. On Win32 it includes
2079         winsock2.h and ws2tcpip.h.
2080
2081         * libsoup/*.c
2082         * libsoup/*.h: Correspondingly, don't include the BSD socket API
2083         headers directly.
2084
2085         * libsoup/soup-address.h
2086         * libsoup/soup-dns.h: Include soup-portability.h
2087
2088         * libsoup/soup-address.c (soup_address_class_init): This function
2089         should get called before libsoup uses the WinSock API, so this is
2090         a good place to call WSAStartup().
2091         
2092         * libsoup/soup-auth-digest.c (get_protection_space): Use
2093         g_strsplit() instead of the relatively unportable strtok_r().
2094
2095         * libsoup/soun-dns.c: Remove unused headers. Implement
2096         inet_pton() and inet_ntop() on Win32 using WSAStringToAddress()
2097         and WSAAddressToString().
2098
2099         * libsoup/soup-socket.c (SOUP_CLOSE_SOCKET, SOUP_IS_SOCKET_ERROR,
2100         SOUP_IS_INVALID_SOCKET, SOUP_IS_CONNECT_STATUS_INPROGRESS):
2101         Portability macros.
2102         (soup_socket_class_init): Call soup_address_get_type() to make
2103         sure WSAStartup() gets called (through soup_address_class_init()).
2104         (update_fdflags): Use ioctlsocket(FIONBIO) on Win32.
2105         (soup_socket_write): Conditionalize SIGPIPE use.
2106         
2107         * tests/get.c: mkdir() is different in Microsoft's C library.
2108
2109         * tests/simple-httpd.c: Rename TRY_AGAIN label to AGAIN to avoid
2110         some clash with winsock2.h (which includes windows.h). The Win32
2111         headers pollute the namespace wildly.
2112
2113 2005-04-15  Dan Winship  <danw@novell.com>
2114
2115         * libsoup/soup-dns.c (resolve_name): make this work with
2116         pre-EAI_OVERFLOW glibc [#300620]
2117
2118 2005-04-12  Dan Winship  <danw@novell.com>
2119
2120         * configure.in: Remove the various gethostbyname_r checks and just
2121         check for getnameinfo/getaddrinfo.
2122
2123         * libsoup/soup-dns.c: de-nastify. Make this use threads instead of
2124         forking. Change the API around a bunch in the process.
2125
2126         * libsoup/soup-address.c: Update for soup-dns changes
2127
2128         * tests/dns.c: take multiple hostnames on the command line and
2129         resolve them all at once (patch from tml)
2130
2131 2005-04-11  Dan Winship  <danw@novell.com>
2132
2133         * configure.in: require glib-2.0 >= 2.4.0
2134
2135         * libsoup/*.c: use G_DEFINE_TYPE and
2136         g_type_class_add_private/G_TYPE_INSTANCE_GET_PRIVATE
2137
2138         * libsoup/soup-types.h: kill SOUP_MAKE_TYPE and
2139         SOUP_MAKE_TYPE_WITH_IFACE
2140
2141         * tests/revserver.c: use GThread. (patch from tml)
2142
2143 2005-04-11  Dan Winship  <danw@novell.com>
2144
2145         * configure.in: bump version to 2.3.0. bump SOUP_API_VERSION to
2146         2.4
2147
2148         * libsoup.pc.in: rename from libsoup-2.2.pc.in
2149
2150         * Makefile.am (EXTRA_DIST, pkgconfig_DATA, install-data-local):
2151         install the .pc file by hand, renaming it to include the
2152         SOUP_API_VERSION
2153
2154         * libsoup/Makefile.am: s/2.2/2.4/
2155
2156 2005-03-09  Dan Winship  <danw@novell.com>
2157
2158         * libsoup/soup-gnutls.c (soup_gnutls_read): return G_IO_STATUS_EOF
2159         if gnutls returns 0. [#73352]
2160         (verify_certificate): put an #ifdef around
2161         GNUTLS_CERT_NOT_TRUSTED so it works with gnutls 1.2.x. [#57811]
2162
2163 2005-01-08  Not Zed  <NotZed@Ximian.com>
2164
2165         ** See ximian bug #70323.
2166
2167         * libsoup/soup-connection-ntlm.c: replace all unsigned long/long
2168         types with guint32, as the code needs 32 bit longs.
2169
2170 2004-10-20  Dan Winship  <danw@novell.com>
2171
2172         * libsoup/soup-gnutls.c: Commit the alleged changes from the 10-06
2173         commit, which somehow did not actually get committed then.
2174
2175         * libsoup/soup-connection.c (SoupConnectionPrivate): add a flag
2176         indicating whether or not the connection is connected.
2177         (tunnel_connect_finished): If successful, set connected. If the
2178         server returns a 3xx response, translate it to 407 (under the
2179         assumption that it's trying to redirect us to an HTML login page,
2180         as in bug 68531). Use soup_socket_start_proxy_ssl() rather than
2181         soup_socket_start_ssl().
2182         (socket_connect_result, soup_connection_connect_sync): If
2183         successful, set connected
2184         (soup_connection_disconnect): Don't emit "disconnected" if we
2185         aren't yet connected, or the message that was waiting for this
2186         connection may get stranded in the queue. (also part of 68531)
2187
2188         * libsoup/soup-socket.c (soup_socket_start_proxy_ssl): New, starts
2189         SSL and lets the caller pass the expected hostname. Fixes a
2190         problem where SSL certification validation would always fail if
2191         you used a proxy, because it was comparing the cert against the
2192         proxy's hostname. (68583)
2193
2194 2004-10-06  Dan Winship  <danw@novell.com>
2195
2196         * libsoup/soup-ssl.h (SoupSocketError): add
2197         SOUP_SSL_ERROR_CERTIFICATE.
2198
2199         * libsoup/soup-gnutls.c (do_handshake): Pass the GError to
2200         verify_certificate.
2201         (verify_certificate): Set the GError appropriately rather than
2202         spewing g_warnings.
2203
2204         * libsoup/soup-socket.c (read_from_network, soup_socket_write): If
2205         the GIOChannel operation returns an error, store it as GOBject
2206         data on the socket (as a hack so soup-message-io.c can access it
2207         without us needing to change SoupSocket's API).
2208
2209         * libsoup/soup-message-io.c (io_error): peek at the socket's
2210         "last_error" datum and set the message's status to SSL_FAILED
2211         (with the GError's message string) rather than IO_ERROR, if
2212         appropriate. For 64414.
2213
2214 2004-09-30  Dan Winship  <danw@novell.com>
2215
2216         * libsoup/soup-gnutls.c (soup_gnutls_init): Add this, with some
2217         extra initialization needed for libgcrypt 1.2 or higher. Fixes
2218         66342.
2219         (soup_ssl_get_client_credentials,
2220         soup_ssl_get_server_credentials): Call soup_gnutls_init().
2221
2222 2004-08-26  Dan Winship  <danw@novell.com>
2223
2224         * configure.in: Bump version to 2.2.0.
2225
2226         * AUTHORS: Update this to reflect the last 2 years.
2227
2228         * NEWS: Brief summary of 1.99.x -> 2.2 changes
2229
2230         * README, TODO: Updates
2231
2232 2004-08-26  Dan Winship  <danw@novell.com>
2233
2234         * libsoup/*: add/fix lots of gtk-doc comments
2235         
2236         * libsoup/soup-misc.c (soup_str_case_hash, soup_str_case_equal):
2237         Fix bug noticed while documenting. (We were using the
2238         locale-case-insensitive functions rather than the g_ascii_ ones.)
2239
2240         * libsoup/soup-message.h (SoupMessageFlags): remove the (never
2241         implemented) NO_PIPELINE and NO_COOKIE flags.
2242
2243         * docs/reference/tmpl/*.sgml: Regenerate, fill in some stuff.
2244         There are still problems here with gtk-doc not recognizing many of
2245         the objects in libsoup...
2246
2247 2004-08-13  JP Rosevear  <jpr@novell.com>
2248
2249         * configure.in: bump version, libtool number
2250
2251 2004-08-09  Dan Winship  <danw@novell.com>
2252
2253         * libsoup/soup-connection.c (soup_connection_connect_sync): Don't
2254         use conn after emitting the "connect_result" signal, since it
2255         might be destroyed by that. Based on a patch from hpj.
2256
2257 2004-08-02  Dan Winship  <danw@novell.com>
2258
2259         * libsoup/soup-uri.h: Add flag "broken_encoding" to SoupUri.
2260
2261         * libsoup/soup-uri.c: (soup_uri_to_string): if broken_encoding is
2262         set, don't re-encode the URL parts. Based on a patch by
2263         Alfred.Peng@Sun.COM.
2264
2265 2004-07-19  JP Rosevear  <jpr@novell.com>
2266
2267         * configure.in: bump version, libtool number
2268
2269 2004-07-15  Dan Winship  <danw@novell.com>
2270
2271         * libsoup/soup-session-sync.c (send_message): Simplify this. If
2272         the message comes back from soup_connection_send_request not
2273         FINISHED, get a new connection rather than reusing the old one.
2274         This fixes a race condition in which a connection could end up
2275         double-booked, and fixes the handling of messages that get
2276         redirected to another server.
2277
2278 2004-07-13  Dan Winship  <danw@novell.com>
2279
2280         * libsoup/soup-session.c (connect_result): If the connection
2281         attempt succeeded, reserve the connection before releasing
2282         host_lock. Otherwise, another thread might find it in the
2283         connection pool before the caller can queue a message on it.
2284         #60693
2285
2286         * libsoup/soup-session-async.c (got_connection): Call
2287         soup_connection_release(), since we don't have a specific message
2288         in mind for the connection, so we need it to be considered idle.
2289
2290         * libsoup/soup-connection.c (soup_connection_release): New
2291         function, to undo a soup_connection_reserve().
2292         (soup_connection_send_request, soup_connection_reserve,
2293         soup_connection_authenticate, soup_connection_reauthenticate):
2294         Document these
2295
2296 2004-07-12  Dan Winship  <danw@novell.com>
2297
2298         * libsoup/soup-session-sync.c (send_message): signal the
2299         "connections available" condition after the message finishes. Duh.
2300
2301         * libsoup-2.2.pc.in (Cflags, Libs): add XML_CFLAGS and XML_LIBS
2302
2303 2004-07-08  Dan Winship  <danw@novell.com>
2304
2305         * libsoup/soup-soap-response.c: Revert previous change for now; it
2306         breaks the build on distros with older libxmls.
2307
2308 2004-07-08  Dan Winship  <danw@novell.com>
2309
2310         * tests/dict.c: Basic SOAP test, using Aonaware's SOAP->DICT
2311         gateway
2312
2313 2004-07-07  Fernando Herrera  <fherrera@onirica.com>
2314
2315         * libsoup/soup-soap-response.c: (finalize), (init),
2316         (soup_soap_response_from_string): Use a parse context for the
2317         xml document, so we can safely use the option to ignore
2318         blank spaces and '\n'.
2319
2320 2004-07-06  Dan Winship  <danw@novell.com>
2321
2322         * libsoup/soup-uri.c (soup_uri_new_with_base): if the protocol is
2323         http or https, require a hostname. For #61049
2324
2325         * tests/uri-parsing.c (rel_tests, do_uri): Update for that
2326
2327 2004-06-03  JP Rosevear <jpr@novell.com>
2328
2329         * configure.in: bump version to 2.1.11, libtool number
2330
2331 2004-06-01  Dan Winship  <danw@novell.com>
2332
2333         * libsoup/soup-address.c: Redo the various IPv4/IPv6-abstracting
2334         macros to not use ?: expressions as lvalues, since that's
2335         apparently a GNU extension.
2336         (soup_address_resolve_async): Use a timeout rather than an idle
2337         handler to poll the dns result. (soup-dns really should be
2338         rewritten to not require polling, but this is easier for now.)
2339         #59240
2340
2341         * libsoup/soup-server.c (call_handler): Don't use GNU-only
2342         non-constant structure initialization
2343
2344         * tests/dns.c: Simple test of the dns code
2345
2346         * tests/Makefile.am (noinst_PROGRAMS): build it
2347
2348 2004-05-19  JP Rosevear  <jpr@novell.com>
2349
2350         * configure.in (SOUP_API_VERSION): bump version, libtool numbers
2351
2352 2004-05-18  Dan Winship  <danw@novell.com>
2353
2354         * libsoup/soup-ssl.h:
2355         * libsoup/soup-nossl.c: define some GError codes and stuff
2356
2357         * libsoup/soup-gnutls.c: add missing #include <gnutls/x509.h>
2358         (do_handshake): when returning G_IO_STATUS_AGAIN, set the GError
2359         to SOUP_SSL_ERROR_HANDSHAKE_NEEDS_READ or _NEEDS_WRITE
2360         appropriately.
2361
2362         * libsoup/soup-socket.c (soup_socket_write): Handle
2363         SOUP_SSL_ERROR_HANDSHAKE_NEEDS_READ, by setting an io watch for
2364         G_IO_IN instead of G_IO_OUT. Fixes the rcd-sucking-up-all-cpu bug
2365         (#58434)
2366         (read_from_network): Handle the reverse case (which would cause
2367         hanging rather than spinning, and might be the cause of some
2368         connector 1.5 slowness?)
2369
2370 2004-05-11  Dan Winship  <danw@novell.com>
2371
2372         * libsoup/soup-misc.c (soup_signal_connect_once): Do this less
2373         kludgefully, using the magic of GClosure, to fix x86_64 problems
2374         reported by snorp.
2375
2376 2004-05-04  Sivaiah Nallagatla <snallagatla@novell.com>
2377
2378         * libsoup/soup-soap-message.c (finalize) : free
2379         the elements of priv structure before freeing priv
2380
2381 2004-04-20  Dan Winship  <danw@ximian.com>
2382
2383         * libsoup/soup-connection-ntlm.c (ntlm_authorize_post): if
2384         re-sending the message, call soup_message_restarted()
2385         (send_request): Connect to "restarted" signal, and remove the 401
2386         handlers from there; doing it here didn't work because if the
2387         connection was closed, the message would be re-sent on a new
2388         connection, but would still have the handlers from the old
2389         connection attached to it, which would make authentication fail.
2390
2391         * libsoup/soup-message-handlers.c (soup_message_run_handlers):
2392         Copy the handler list before starting, to protect against handlers
2393         that modify the handler list.
2394
2395 2004-04-15  Dan Winship  <danw@ximian.com>
2396
2397         * libsoup/soup-connection.c (soup_connection_connect_sync):
2398         Connect to the socket's "disconnect" signal. (We were only doing
2399         this from the async version before, which meant that synchronous
2400         SoupConnections could outlive their sockets and start causing
2401         errors.) #57004
2402
2403         * libsoup/soup-connection-ntlm.c (send_request): Remove the old
2404         Authorization header before adding a new one.
2405
2406 2004-04-02  JP Rosevear  <jpr@ximian.com>
2407
2408         * configure.in: bump version, libtool number
2409
2410 2004-03-15  Dan Winship  <danw@ximian.com>
2411
2412         * libsoup/soup-soap-message.c (soup_soap_message_persist): Fix up
2413         types to kill a warning with -Wall -O2
2414
2415 2004-03-05  JP Rosevear <jpr@ximian.com>
2416
2417         * configure.in: bump version, libtool number
2418
2419 2004-03-02  Dan Winship  <danw@ximian.com>
2420
2421         * libsoup/soup-dns.c (check_hostent): Only loop on EINTR if
2422         bytes_read is -1, since the value of errno is irrelevant when
2423         bytes_read is 0. Probably #54960.
2424
2425 2004-03-01  Rodrigo Moya <rodrigo@ximian.com>
2426
2427         * libsoup/soup-soap-response.h: removed not-implemented function's
2428         prototype.
2429
2430 2004-02-27  Rodney Dawes  <dobey@ximian.com>
2431
2432         * configure.in:
2433         * libsoup/Makefile.am: Use a different variable for linking to the
2434         static version of gnutls, so we don't pull the .a files into the .pc
2435
2436         Fixes #53346
2437
2438 2004-02-20  Dan Winship  <danw@ximian.com>
2439
2440         * libsoup/soup-message-io.c (read_metadata, read_body_chunk,
2441         write_data): Pass gsize *, not guint *, to soup_socket_read/write,
2442         to make this work on 64-bit platforms. (Grr. C type checking
2443         sucks.) #54631
2444         
2445         * tests/revserver.c: Likewise
2446
2447 2004-02-18  Rodrigo Moya <rodrigo@ximian.com>
2448
2449         Fixes #54512
2450
2451         * libsoup/soup-soap-response.c (soup_soap_parameter_get_int_value):
2452         don't leak the value returned from xmlNodeGetContent().
2453         (soup_soap_parameter_get_string_value,
2454         soup_soap_parameter_get_property): return a g_strdup'ed
2455         string, not the value returned by xmlNodeGetContent, so that
2456         callers can use g_free, and not xmlFree.
2457
2458         * libsoup/soup-soap-response.h: made soup_parameter_get_property
2459         not return const.
2460
2461 2004-02-17  Dan Winship  <danw@ximian.com>
2462
2463         * libsoup/soup-soap-message.h (SOUP_IS_SOAP_MESSAGE_CLASS): Fix a
2464         typo. #54433, from Mariano Suarez-Alvarez.
2465
2466         * libsoup/soup-soap-response.h (SOUP_IS_SOAP_RESPONSE_CLASS):
2467         Likewise
2468
2469 2004-02-17  Rodney Dawes  <dobey@ximian.com>
2470
2471         * libsoup/soup-message.c (soup_message_new): HTTP connections require
2472         a hostname, and we also hash on the host for message queueing in the
2473         session, if the host is NULL we free the SoupUri and return NULL
2474
2475 2004-02-14  Dan Winship  <danw@ximian.com>
2476
2477         * configure.in: Use POSIX-compliant "test $foo = bar", rather than
2478         GNU-only "test $foo == bar". #54354, from Julio M. Merino Vidal.
2479
2480 2004-02-12  Joe Shaw  <joe@ximian.com>
2481
2482         * libsoup/soup-dns.c (check_hostent): Call read() in a do-while
2483         loop to prevent DNS errors from short reads.
2484
2485 2004-02-11  Joe Shaw  <joe@ximian.com>
2486
2487         * configure.in: Bumped version number to 2.1.7 and libtool
2488         current. 
2489
2490 2004-02-11  Dan Winship  <danw@ximian.com>
2491
2492         * libsoup/soup-connection.c (soup_connection_disconnect): Update
2493         Joe's comment here with a gory explanation of exactly what's going
2494         on. (It's not just an SSL bug either, it affects all connections.)
2495
2496 2004-02-10  Joe Shaw  <joe@ximian.com>
2497
2498         * libsoup/soup-connection.c (soup_connection_disconnect): Add a
2499         workaround for SSL connections which time-out but don't close the
2500         socket until we try sending data again later.
2501
2502         * libsoup/soup-socket.c (soup_socket_connect, soup_socket_listen):
2503         Don't free the sockaddr from soup_address_get_sockaddr(); we don't
2504         own it, the SoupAddress does.
2505
2506 2004-02-09  JP Rosevear  <jpr@ximian.com>
2507
2508         * configure.in: Bump libtool numbers
2509
2510 2004-02-05  Dan Winship  <danw@ximian.com>
2511
2512         * libsoup/soup-session.c (soup_session_add_filter): Ref the filter
2513         when adding it.
2514         (soup_session_remove_filter): And unref it here (we were already
2515         unreffing it in dispose().)
2516
2517 2004-02-05  Joe Shaw  <joe@ximian.com>
2518
2519         * libsoup/soup-dns.c (soup_dns_entry_unref): Don't try to free the
2520         hostent if it's NULL.
2521         (soup_dns_entry_check_lookup): If the entry is resolved, but the
2522         hostent is NULL, uncache it.
2523
2524 2004-02-04  Dan Winship  <danw@ximian.com>
2525
2526         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): Always
2527         remove the WWW-Authenticate headers before returning, so the
2528         session won't fall back to Basic auth. Also, leave the connection
2529         in the "authenticating" state rather than setting it to
2530         "authenticated".
2531         (ntlm_authorize_post): Only requeue the message if it's in the
2532         "authenticating" state (and set it to "authenticated"). Fixes an
2533         "unepectedly disconnected" error if authentication fails.
2534
2535 2004-02-03  Dan Winship  <danw@ximian.com>
2536
2537         * libsoup/soup-message-io.c (io_cleanup): Call
2538         soup_message_io_stop so we don't get a callback on the io after
2539         it's been cleaned up.
2540
2541         * libsoup/soup-session.c (add_auth): Only remove the Authorization
2542         header if we have another one to add. (Otherwise it messes up
2543         SoupConnectionNTLM.)
2544
2545         * libsoup/soup-socket.c (read_from_buf): Use memmove rather than
2546         memcpy here, since the source and destination will overlap if
2547         *nread is small and read_buf->len is large. (Noticed by valgrind,
2548         #53625.)
2549
2550 2004-02-02  Joe Shaw  <joe@ximian.com>
2551
2552         * libsoup/soup-gnutls.c (soup_gnutls_close): Call gnutls_bye()
2553         with the GNUTLS_SHUT_WR flag (instead of RDWR) and check only for
2554         GNUTLS_E_INTERRUPTED.  GNUTLS_E_AGAIN will be returned by recv()
2555         when there are no messages on the wire on a non-blocking socket.
2556         This sends a SSL hangup message and then allows us to immediately
2557         close the socket.
2558
2559 2004-01-30  Rodrigo Moya <rodrigo@ximian.com>
2560
2561         * configure.in: bumped version number to 2.1.6.
2562
2563 2004-01-29  Rodrigo Moya <rodrigo@ximian.com>
2564
2565         * libsoup/soup-soap-response.[ch] (soup_soap_parameter_get_property):
2566         new function.
2567
2568 2004-01-29  Rodrigo Moya <rodrigo@ximian.com>
2569
2570         * libsoup/soup-soap-response.[ch]
2571         (soup_soap_parameter_get_string_value): removed 'const' from return
2572         type.
2573
2574 2004-01-29  Joe Shaw  <joe@ximian.com>
2575
2576         * libsoup/soup-gnutls.c (verify_certificate): Initialize the
2577         certificate before we try to use it.  Ahem.
2578
2579 2004-01-23  Joe Shaw  <joe@ximian.com>
2580
2581         * configure.in: Bump version to 2.1.5 and SOUP_RELEASE to 2
2582
2583 2004-01-21  Joe Shaw  <joe@ximian.com>
2584
2585         * configure.in: Require at least GnuTLS 1.0.0.
2586
2587         * libsoup/soup-gnutls.c: Fix the use of deprecated GnuTLS
2588         functions.
2589         (verify_certificate): Use gnutls_x509_crt_import() and
2590         gnutls_x509_crt_check_hostname() instead of
2591         gnutls_x509_check_certificates_hostname().
2592         (init_dh_params): Use gnutls_dh_params_generate2() instead of
2593         gnutls_dh_params_generate() and gnutls_dh_params_set().
2594
2595 2004-01-20  Joe Shaw  <joe@ximian.com>
2596
2597         * libsoup/soup-gnutls.c (soup_gnutls_close): gnutls_bye() doesn't
2598         close the socket itself, so we need to do it or else our
2599         connections stay in CLOSE_WAIT forever.
2600
2601 2004-01-16  Jason Leach  <leach@wam.umd.edu>
2602
2603         * libsoup/Makefile.am: builddir != srcdir fixes.
2604
2605 2004-01-14  Joe Shaw  <joe@ximian.com>
2606
2607         * libsoup/soup-gnutls.c (verify_certificate): Remove the
2608         check for GNUTLS_CERT_CORRUPTED, it's not in 1.0.x.
2609
2610 2004-01-12  JP Rosevear  <jpr@ximian.com>
2611
2612         * configure.in: bump version and libtool revision
2613
2614 2004-01-12  Dan Winship  <danw@ximian.com>
2615
2616         * tests/simple-httpd.c (main): Add a g_thread_init() so this works
2617         again.
2618
2619 2004-01-10  Larry Ewing  <lewing@ximian.com>
2620
2621         * libsoup-2.2.pc.in (Libs): use LIBGNUTLS_LIBS in the substitution
2622         string.
2623
2624 2004-01-09  Joe Shaw  <joe@ximian.com>
2625
2626         * acinclude.m4: Include the libgnutls.m4 file.
2627
2628         * configure.in: Remove manual checking for libgnutls-config and
2629         use the AM_PATH_LIBGNUTLS so we can pass in a minimum required
2630         version, which is 0.9.7 for now.
2631
2632         * libsoup/Makefile.am: Some changes for the above change.
2633
2634         * libsoup/soup-gnutls.c: Check for HAVE_SSL, not
2635         HAVE_GNUTLS_GNUTLS_H.
2636         (verify_certificate): Uncomment the SSL certificate hostname
2637         check.
2638
2639         * libsoup/soup-session.c (set_property): Be smart about flushing
2640         our SSL credentials only when the CA file is set to something
2641         different than it was before.
2642
2643 2004-01-09  Harish K <kharish@novell.com>
2644         * libsoup/soup-soap-response.c (soup_soap_response_from_string): 
2645         added code to ignore Header element, if present, while creating 
2646         response objects.  
2647         
2648 2004-01-05  Dan Winship  <danw@ximian.com>
2649
2650         * configure.in: Remove no-longer-relevant socklen_t check
2651
2652         * libsoup/soup-address.c: Reorder #includes for FreeBSD (From Joe
2653         Marcus Clarke, #52566)
2654
2655         * libsoup/soup-dns.c: Likewise
2656
2657 2003-12-29  JP Rosevear <jpr@ximian.com>
2658
2659         * configure.in: bump version and libtool numbers
2660
2661 2003-12-22  Dan Winship  <danw@ximian.com>
2662
2663         * README, TODO: Update these
2664
2665 2003-12-22  Dan Winship  <danw@ximian.com>
2666
2667         * libsoup/soup-socket.c: Lots of thread-safety stuff, primarly so
2668         you can disconnect a socket from one thread while doing I/O in
2669         another.
2670
2671         * libsoup/soup-message-io.c (soup_message_io_cancel): Split into
2672         soup_message_io_stop() and io_cleanup(), to separate out the "stop
2673         reading/writing" and "free data" phases to allow thread-safe
2674         synchronous cancellation.
2675         (soup_message_io_finished): call both soup_message_io_stop() and
2676         io_cleanup()
2677         (io_error): Only set SOUP_STATUS_IO_ERROR on the message if it
2678         doesn't already have a transport error status (eg, CANCELLED).
2679         (new_iostate): Call io_cleanup() if needed.
2680
2681         * libsoup/soup-status.h: add "SOUP_STATUS_NONE" for 0, to make it
2682         clearer that it's not a status.
2683
2684         * libsoup/soup-message.c (finalize, restarted, finished,
2685         soup_message_set_uri): s/soup_message_io_cancel/soup_message_io_stop/
2686         (soup_message_cleanup_response): s/0/SOUP_STATUS_NONE/
2687
2688         * libsoup/soup-connection.c (send_request): Remove
2689         soup_message_io_cancel call.
2690
2691         * libsoup/soup-session-sync.c (send_message): Connect to the
2692         connection's "disconnected" signal rather than using a weak ref,
2693         since that's what we really care about, and it's possible that the
2694         connection may have an extra ref on it somewhere that would keep
2695         it from being destroyed even if it was disconnected.
2696
2697 2003-12-20  Joe Shaw  <joe@ximian.com>
2698
2699         * libsoup/soup-session.c (lookup_auth): If const_path is NULL un
2700         the non-proxy case, then use the root ("/").
2701
2702 2003-12-19  Dan Winship  <danw@ximian.com>
2703
2704         * libsoup/soup-message-filter.c: New. An interface for objects
2705         that want to act on every message passing through a session.
2706         (Initially being used for authentication, but could also be used
2707         for cache handling, cookie management, etc.)
2708
2709         * libsoup/soup-connection.c (class_init, etc): Add a message
2710         filter property.
2711         (send_request): If the connection has a message filter set, run
2712         it on the message before sending it.
2713         (soup_connection_connect_async, etc): When setting up a tunnel, if
2714         we get back a 407 and the session tries to requeue the message,
2715         either re-send it, or return SOUP_STATUS_TRY_AGAIN (depending on
2716         whether or not the proxy closed the connection).
2717         (soup_connection_connect_sync): Likewise
2718         (send_request, request_done): Ref/unref the connection
2719
2720         * libsoup/soup-session.c (soup_session_get_type): Implement the
2721         SoupMessageFilter interface.
2722         (soup_session_get_connection): Use the session as the connection's
2723         message filter
2724         (soup_session_add_filter, soup_session_remove_filter): Add/remove
2725         filters from the session
2726         (setup_message): do auth handling, and call each of the session's
2727         filters' setup_message methods as well.
2728         (soup_session_send_message_via): No longer needed.
2729         (connect_result): Handle SOUP_STATUS_TRY_AGAIN.
2730
2731         * libsoup/soup-session-async.c (run_queue): Use
2732         soup_connection_send_request, since soup_session_send_message_via
2733         is gone now.
2734
2735         * libsoup/soup-session-sync.c (send_message): Likewise
2736
2737         * libsoup/soup-message.c (soup_message_is_keepalive): A successful
2738         response to a CONNECT is always keepalive, even if it's HTTP/1.0
2739         with no Connection header.
2740
2741         * libsoup/soup-status.h: add SOUP_STATUS_TRY_AGAIN
2742
2743         * libsoup/soup-types.h: Add SoupMessageFilter, and macros for
2744         gobject interface types.
2745
2746         * tests/get.c (main): Add a -p flag to specify a proxy
2747
2748         * tests/simple-proxy.c: Fix #includes
2749
2750 2003-12-18  Dan Winship  <danw@ximian.com>
2751
2752         * libsoup/soup-connection.c (soup_connection_disconnect): Actually
2753         disconnect the socket rather than just unreffing it, since the IO
2754         code may be holding an extra ref on it.
2755         (send_request): connect to the "restarted" signal too
2756         (request_restarted): Deal with "Connection: close"
2757
2758         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): Make this
2759         not go into an infinite loop if the server only supports Basic.
2760
2761 2003-12-17  Rodrigo Moya <rodrigo@ximian.com>
2762
2763         * libsoup/Makefile.am: install soup-message-queue.h with the rest
2764         of the headers.
2765
2766 2003-12-17  Dan Winship  <danw@ximian.com>
2767
2768         * configure.in: Add gthread to glib check
2769
2770         * libsoup/soup-session.c: Make this an abstract class.
2771
2772         * libsoup/soup-session-async.c: A SoupSession class for
2773         asynchronous gmain-based operation; replaces the old SoupSession.
2774
2775         * libsoup/soup-session-sync.c: A SoupSession class for synchronous
2776         blocking operation for use with threaded apps.
2777
2778         * libsoup/soup-types.h, libsoup/soup.h: add the new session
2779         subclasses
2780
2781         * libsoup/soup-connection.c (soup_connection_connect_sync): Don't
2782         try to unref the socket if the socket creation fails.
2783         (soup_connection_reserve): New, to explicitly mark a connection as
2784         being in use without queueing a message on it.
2785
2786         * libsoup/soup-dns.c (check_hostent): Oof. Fix the logic of the
2787         "block" flag to not be reversed.
2788
2789         * libsoup/soup-message.c (finished): set status to FINISHED here.
2790         (soup_message_cancel): Gone; needs to be done at the session
2791         level.
2792
2793         * libsoup/soup-message-queue.c: Add a mutex and make all of the
2794         operations thread-safe.
2795
2796         * libsoup/soup-socket.c (disconnect_internal): Make this
2797         thread-safe.
2798         (soup_socket_connect): Make the sync case work correctly.
2799
2800         * libsoup/Makefile.am: add the SoupSession subclasses
2801
2802         * tests/Makefile.am: libsoup depends on libgthread now, so
2803         revserver doesn't need to explicitly.
2804
2805         * tests/get.c, tests/auth-test.c, tests/simple-proxy.c: Use
2806         soup_session_async_new().
2807
2808 2003-12-16  Rodrigo Moya <rodrigo@ximian.com>
2809
2810         * libsoup/soup-soap-response.[ch] (soup_soap_parameter_get_int_value):
2811         new function.
2812
2813 2003-12-16  Joe Shaw  <joe@ximian.com>
2814
2815         * libsoup/soup-connection.c (socket_connect_result,
2816         soup_connection_connect_sync): Only set up a tunnel if the
2817         destination protocol is HTTPS.
2818
2819         * libsoup/soup-message.c (class_init): Add a default handler for
2820         wrote_body.
2821         (wrote_body): Run the SOUP_HANDLER_POST_REQUEST handlers here.
2822         (soup_message_cancel): Don't set the status to
2823         SOUP_STATUS_CANCELLED and call soup_message_finished() if the
2824         status is already SOUP_MESSAGE_STATUS_FINISHED.
2825
2826         * libsoup/soup-session.c (set_property): Don't cancel the session
2827         if the proxy URI set as a property isn't different from the old
2828         one.
2829         (get_host_for_message): Refactor some code so that we can easily
2830         get the right SoupSessionHost for proxies as well as from the
2831         message.
2832         (authenticate_auth): Take a gboolean proxy parameter.  Check it to
2833         see which URI (message URI or proxy URI) to use for
2834         authentication.  Add a long comment about lack of clarity in RFC
2835         2617 with respect to proxies and protection spaces.
2836
2837 2003-12-15  Dan Winship  <danw@ximian.com>
2838
2839         * libsoup/soup-socket.h (soup_socket_read, soup_socket_read_until,
2840         soup_socket_write): s/guint/gsize/ to match the definitions in
2841         soup-socket.c. #52167.
2842
2843 2003-12-12  Rodrigo Moya <rodrigo@ximian.com>
2844
2845         * libsoup/soup-soap-message.c: removed debugging of the messages here.
2846
2847 2003-12-12  Rodrigo Moya <rodrigo@ximian.com>
2848
2849         * libsoup/soup-soap-message.c (soup_soap_message_start_envelope):
2850         added information for SOAP-ENV namespace.
2851
2852 2003-12-10  Dan Winship  <danw@ximian.com>
2853
2854         * libsoup/soup-message-client-io.c (parse_response_headers): if we
2855         receive an HTTP/1.0 response to an HTTP/1.1 request, downgrade the
2856         message's http_version so the keep-alive handling is correct.
2857         Fixes a problem noticed almost simultaneously by Rodrigo and Joe.
2858
2859         * libsoup/soup-message.c (soup_message_restarted, etc): Add a
2860         "restarted" signal as suggested by Joe.
2861
2862         * libsoup/soup-message-io.c (soup_message_io_finished): emit
2863         either "restarted" or "finished" as appropriate
2864
2865         * libsoup/soup-session.c (soup_session_queue_message): Connect to
2866         "restarted" and run the queue if a message gets restarted
2867
2868         * libsoup/soup-status.h: Remove a stray comma that gtk-doc doesn't
2869         like.
2870
2871 2003-12-10  Tambet Ingo  <tambet@ximian.com>
2872
2873         * configure.in: Use autoconfig to check for socklen_t ...
2874
2875         * libsoup/soup-address.c: ... and remove it from here ...
2876
2877         * libsoup/soup-dns.c: ... and here.
2878
2879 2003-12-09  Rodrigo Moya <rodrigo@ximian.com>
2880
2881         * libsoup/soup-soap-message.c (soup_soap_message_persist):
2882         (soup_soap_message_parse_response): print out request/response's
2883         contents, if in debug mode.
2884
2885 2003-12-07  JP Rosevear  <jpr@ximian.com>
2886
2887         * configure.in: Bump version
2888
2889 2003-11-28  Rodrigo Moya <rodrigo@ximian.com>
2890
2891         * libsoup/soup-soap-response.[ch]
2892         (soup_soap_parameter_get_first_child,
2893         soup_soap_parameter_get_first_child_by_name,
2894         soup_soap_parameter_get_next_child,
2895         soup_soap_parameter_get_next_child_by_name): new functions to
2896         manage SoupSoapParameter's children.
2897         (soup_soap_response_get_first_parameter): dont return a GList, but
2898         a SoupSoapParameter contained in the GList.
2899
2900 2003-11-26  Rodrigo Moya <rodrigo@ximian.com>
2901
2902         * libsoup/soup-soap-response.[ch]
2903         (soup_soap_parameter_get_string_value): new function.
2904
2905 2003-11-26  Rodrigo Moya <rodrigo@ximian.com>
2906
2907         * libsoup/soup-soap-response.[ch]: added SoupSoapParameter
2908         structure, to "hide" the usage of xmlNode's.
2909         (soup_soap_parameter_get_name): functions to manage SOAP
2910         response parameters.
2911         (soup_soap_response_get_first_parameter,
2912         soup_soap_response_get_first_parameter_by_name,
2913         soup_soap_response_get_next_parameter,
2914         soup_soap_response_get_next_parameter_by_name):
2915         new functions for an easy access to the response's parameters.
2916         (soup_soap_response_from_string): removed warnings.
2917
2918 2003-11-25  Rodrigo Moya <rodrigo@ximian.com>
2919
2920         * libsoup/soup-soap-response.c (soup_soap_response_set_method_name):
2921         fixed typo.
2922
2923 2003-11-25  Rodrigo Moya <rodrigo@ximian.com>
2924
2925         * libsoup/soup-soap-response.[ch] (soup_soap_response_get_method_name,
2926         soup_soap_response_set_method_name, soup_soap_message_get_parameters):
2927         new functions.
2928         (finalize): NULL out new private fields.
2929         (soup_soap_response_from_string): added validation code.
2930
2931 2003-11-23  Rodrigo Moya <rodrigo@ximian.com>
2932
2933         * libsoup/soup-soap-response.[ch]: new class for managing SOAP
2934         responses.
2935
2936         * libsoup/soup-soap-message.[ch] (soup_soap_message_parse_response):
2937         new function.
2938
2939         * libsoup/Makefile.am: added new files.
2940
2941 2003-11-18  Rodney Dawes  <dobey@ximian.com>
2942
2943         * gtk-doc.make: Add gtk-doc.make to cvs for systems without gtk-doc
2944
2945 2003-11-18  Rodney Dawes  <dobey@ximian.com>
2946
2947         * acinclude.m4: Add GTK_DOC_CHECK
2948
2949 2003-11-18  Dan Winship  <danw@ximian.com>
2950
2951         * configure.in: Replace old gtk-doc test with GTK_DOC_CHECK()
2952         (AC_OUTPUT): add docs/Makefile, docs/reference/Makefile
2953
2954         * autogen.sh (REQUIRED_AUTOMAKE_VERSION): 1.6, for gtk-doc.make
2955
2956         * Makefile.am: updates for gtk-doc
2957         (SUBDIRS): add back "docs"
2958
2959         * docs/Makefile.am (EXTRA_DIST): remove, since those old docs
2960         aren't around any more
2961
2962         * docs/reference/*: set up gtk-doc
2963
2964         * libsoup/Makefile.am (INCLUDES): Change G_LOG_DOMAIN to
2965         "libsoup". Remove unused defines.
2966
2967         * libsoup/soup-connection.c: Fix doc comments
2968         * libsoup/soup-message.c: Likewise
2969         * libsoup/soup-misc.c: Likewise
2970         * libsoup/soup-socket.c: Likewise
2971         * libsoup/soup-uri.c: Likewise
2972
2973         * libsoup/soup-address.h: Fixes to please gtk-doc
2974         * libsoup/soup-connection.h: Likewise
2975         * libsoup/soup-message.h: Likewise
2976         * libsoup/soup-message-private.h: Likewise
2977         * libsoup/soup-misc.h: Likewise
2978         * libsoup/soup-server-auth.h: Likewise
2979         * libsoup/soup-socket.h: Likewise
2980         * libsoup/soup-status.h: Likewise
2981
2982 2003-11-18  Dan Winship  <danw@ximian.com>
2983
2984         * configure.in: Fix up the SSL checks some. Remove some useless
2985         old header checks.
2986
2987         * libsoup/soup-misc.h: declare soup_ssl_supported.
2988
2989         * libsoup/soup-gnutls.c: add soup_ssl_supported declaration.
2990
2991         * libsoup/soup-nossl.c: Not an SSL implementation, built if
2992         HAVE_SSL is not defined.
2993
2994         * libsoup/Makefile.am (libsoup_2_2_la_SOURCES): add soup-nossl.c
2995
2996         * libsoup/soup-socket.c (soup_socket_start_ssl): Return success or
2997         failure.
2998         (listen_watch): Deal with soup_socket_start_ssl failing.
2999
3000         * libsoup/soup-connection.c (tunnel_connect_finished,
3001         socket_connect_result, soup_connection_connect_sync): Deal with
3002         the soup_socket_start_ssl failing.
3003
3004         * libsoup/soup-server.c (soup_server_new): Deal with
3005         soup_ssl_get_server_credentials failing
3006
3007 2003-11-18  Rodrigo Moya <rodrigo@ximian.com>
3008
3009         * libsoup/soup-soap-message.[ch] (soup_soap_message_start_fault,
3010         soup_soap_message_end_fault, soup_soap_message_start_fault_detail,
3011         soup_soap_message_end_fault_detail, soup_soap_message_start_header,
3012         soup_soap_message_end_header,
3013         soup_soap_message_start_header_element,
3014         soup_soap_message_end_header_element, soup_soap_message_write_int,
3015         soup_soap_message_write_double, soup_soap_message_write_base64,
3016         soup_soap_message_write_time, soup_soap_message_write_string,
3017         soup_soap_message_write_buffer, soup_soap_message_set_element_type,
3018         soup_soap_message_set_null, soup_soap_message_add_attribute,
3019         soup_soap_message_add_namespace,
3020         soup_soap_message_set_default_namespace,
3021         soup_soap_message_get_namespace_prefix,
3022         soup_soap_message_set_encoding_style, soup_soap_message_reset,
3023         soup_soap_message_persist): new functions from old SoupSerializer.
3024
3025 2003-11-17  Rodrigo Moya <rodrigo@ximian.com>
3026
3027         * libsoup/soup-soap-message.[ch] (soup_soap_message_new,
3028         soup_soap_message_new_from_uri): added a bunch of initialization
3029         parameters.
3030         (soup_soap_message_get_xml_doc, soup_soap_message_start_envelope,
3031         soup_soap_message_end_envelope, soup_soap_message_start_body,
3032         soup_soap_message_end_body, soup_soap_message_start_element,
3033         soup_soap_message_end_element):
3034         new functions.
3035
3036         * configure.in: depend on libxml-2.0 for the SOAP code.
3037
3038         * libsoup/Makefile.am: use XML CFLAGS and LIBS.
3039
3040 2003-11-17  Joe Shaw  <joe@ximian.com>
3041
3042         * configure.in: Add in the --enable-libgpg-error flag from the 2.0
3043         branch.
3044
3045         * acinclude.m4: Include the gpg-error macros.
3046
3047 2003-11-17  Rodrigo Moya <rodrigo@ximian.com>
3048
3049         * libsoup/soup-soap-message.[ch]: new class to make it easier to
3050         build SOAP messages.
3051
3052         * libsoup/Makefile.am: added new files.
3053
3054         * configure.in: increased version number.
3055
3056 2003-10-24  Joe Shaw  <joe@ximian.com>
3057
3058         * libsoup/soup-address.c (update_address_from_entry): Call
3059         soup_dns_entry_get_hostent() on the SoupAddress passed in, not the
3060         one in addr->priv->lookup.  Fixes a crash on synchronous DNS
3061         lookups.
3062
3063         * libsoup/soup-server.c (soup_server_new): We need to ref the
3064         address we're binding to, because soup_socket_get_local_address()
3065         doesn't ref for us.
3066
3067 2003-10-23  Dan Winship  <danw@ximian.com>
3068
3069         * libsoup/soup-socket.c (init): Initialize flags to default
3070         values.
3071
3072 2003-09-23  Dan Winship  <danw@ximian.com>
3073
3074         * libsoup/soup-gnutls.c (SoupGNUTLSCred): Remove refcounting, but
3075         note whether or not the CA file has been loaded.
3076         (SoupGNUTLSChannel): add a "hostname" field.
3077         (verify_certificate): Remove the comment about not being able to
3078         verify the hostname because of soup problems. Now it's because of
3079         GNUTLS problems instead.
3080         (soup_ssl_wrap_iochannel): Renamed from soup_ssl_get_iochannel,
3081         and takes a hostname and a creds argument now.
3082         (soup_ssl_get_client_credentials,
3083         soup_ssl_get_server_credentials): Return client/server credentials
3084         structures.
3085         (soup_ssl_free_client_credentials,
3086         soup_ssl_free_server_credentials): and free them.
3087
3088         * libsoup/soup-session.c (class_init, set_property, get_property):
3089         add ssl_ca_file property
3090         (get_host_for_message): when returning an SSL host for the first
3091         time, create a client credentials structure for the session.
3092         (run_queue): Pass the ssl creds to the new connection. Also fix an
3093         unrelated bug that caused infinite loops on "bad hostname".
3094
3095         * libsoup/soup-server.c: Use GObject properties, including
3096         ssl_cert_file and ssl_key_file properties.
3097         (soup_server_new): Remove "protocol" argument; if the cert file
3098         and key file properties were set, create a server credential
3099         structure from them and pass that to soup_socket_server_new.
3100
3101         * libsoup/soup-connection.c (SoupConnectionPrivate): Rename
3102         dest_uri to origin_uri to match RFC 2616 terminology. Add an
3103         "ssl_creds" field.
3104         (class_init, set_property, get_property): add SSL_CREDS property
3105         (soup_connection_connect_async, soup_connection_connect_sync):
3106         Pass ssl_creds to soup_socket_client_new calls.
3107
3108         * libsoup/soup-socket.c: Use GObject properties, including an
3109         ssl_creds property
3110         (soup_socket_set_flags): Gone (replaced with boolean properties)
3111         (soup_socket_new): Make this take a list of properties
3112         (listen_watch): copy ssl creds from listener to new socket
3113         (soup_socket_start_ssl): Pass remote hostname and socket creds
3114         structure to soup_ssl_wrap_iochannel.
3115         (soup_socket_client_new_async, soup_socket_client_new_sync,
3116         soup_socket_server_new): Replace the SSL boolean with an ssl_creds
3117         structure.
3118
3119         * libsoup/soup-misc.c (soup_set_ssl_ca_file,
3120         soup_set_ssl_cert_files, soup_get_ssl_ca_file,
3121         soup_get_ssl_cert_files): Gone. SSL state is now per-session or
3122         per-server.
3123
3124         * tests/get.c: add a "-c CAfile" argument, for loading a CA
3125         certificate file to validate https connections against
3126
3127         * tests/simple-httpd.c: Add "-c certfile" and "-k keyfile"
3128         arguments for loading an SSL server certificate. Only start an SSL
3129         server if those arguments were used.
3130
3131         * tests/test-cert.pem: 
3132         * tests/test-key.pem: SSL certificate for testing simple-httpd
3133
3134         * tests/revserver.c: Update for API changes
3135         * tests/simple-proxy.c: Likewise
3136
3137 2003-09-22  Dan Winship  <danw@ximian.com>
3138
3139         * libsoup/soup-message-io.c: Move RESPONSE_BLOCK_SIZE #define here
3140         from soup-private.h
3141
3142         * libsoup/soup-misc.c (soup_load_config, etc): Remove all this.
3143         (soup_set_security_policy, soup_get_security_policy): Remove,
3144         since the GNUTLS backend doesn't actually implement it.
3145         (soup_set_ssl_ca_dir, soup_get_ssl_ca_dir): Likewise
3146
3147         * libsoup/soup-misc.h: sync to soup-misc.c. Don't #include extra
3148         stuff.
3149
3150         * libsoup/soup-types.h (SOUP_MAKE_TYPE): Move this here from
3151         soup-private.h
3152
3153         * libsoup/soup-ssl.h: Merge soup_ssl_get_iochannel and
3154         soup_ssl_get_server_iochannel into a single function that takes a
3155         SoupSSLType.
3156
3157         * libsoup/soup-gnutls.c: Remove soup_get_ssl_ca_dir() reference.
3158         (soup_ssl_get_iochannel): Renamed from soup_gnutls_get_iochannel.
3159         (soup_gnutls_set_security_policy): Gone
3160
3161         * libsoup/soup-gnutls.h
3162         * libsoup/soup-ssl.c: Gone; soup-ssl.h is the #include file for
3163         soup-gnutls.c now
3164
3165         * libsoup/soup-socket.c: Move soup_sockaddr_max
3166         #define here from soup-private.h
3167         (soup_socket_start_ssl): Update for new soup_ssl_get_iochannel
3168         prototype.
3169
3170         * libsoup/soup-private.h: Gone
3171         
3172         * libsoup/soup-address.c: Fix #includes for soup-private.h and
3173         soup-misc.h changes
3174         * libsoup/soup-auth-digest.c: Likewise
3175         * libsoup/soup-auth.c: Likewise
3176         * libsoup/soup-connection-ntlm.c: Likewise
3177         * libsoup/soup-connection.c: Likewise
3178         * libsoup/soup-dns.c: Likewise
3179         * libsoup/soup-gnutls.c: Likewise
3180         * libsoup/soup-headers.c: Likewise
3181         * libsoup/soup-message-client-io.c: Likewise
3182         * libsoup/soup-message-handlers.c: Likewise
3183         * libsoup/soup-message-io.c: Likewise
3184         * libsoup/soup-message-server-io.c: Likewise
3185         * libsoup/soup-message.c: Likewise
3186         * libsoup/soup-server-message.c: Likewise
3187         * libsoup/soup-server.c: Likewise
3188         * libsoup/soup-session.c: Likewise
3189         * libsoup/soup-socket.c: Likewise
3190         * tests/auth-test.c: Likewise
3191
3192 2003-09-19  Dan Winship  <danw@ximian.com>
3193
3194         * libsoup/soup-address.c (update_address_from_entry): free the
3195         hostent.
3196
3197         * libsoup/soup-connection-ntlm.c (ntlm_authorize_pre): Don't leak
3198         the domain
3199
3200         * libsoup/soup-gnutls.c (soup_gnutls_get_iochannel): Add some more
3201         iochannel initialization. Not sure how this worked before...
3202
3203         * libsoup/soup-message.c (soup_message_cleanup_response): Renamed
3204         from soup_message_prepare (and a few things removed).
3205
3206         * libsoup/soup-message-client-io.c (soup_message_send_request):
3207         s/soup_message_prepare/soup_message_cleanup_response/
3208
3209         * libsoup/soup-message-io.c (io_read): Replace the final "\r\n"
3210         with "\0" on the headers before passing them to the parse
3211         function.
3212         (io_read): Call soup_message_cleanup_response after returning an
3213         informational response so the data doesn't leak.
3214
3215         * libsoup/soup-headers.c (soup_headers_parse): Update for
3216         soup-message-io.c:io_read change
3217
3218         * libsoup/soup-server.c (soup_server_new,
3219         soup_server_new_with_host): Don't leak the SoupAddress.
3220
3221         * libsoup/soup-session.c (class_init): Make PROP_PROXY_URI not
3222         CONSTRUCT_ONLY.
3223         (set_property): If the proxy uri changes, call
3224         soup_session_abort() and cleanup_hosts().
3225         (request_finished, final_finished): Fix a bug when requeuing
3226         messages.
3227
3228         * tests/libsoup.supp: valgrind suppression file for soup tests
3229
3230         * tests/Makefile.am (EXTRA_DIST): dist it.
3231         (noinst_PROGRAMS): move the former check_PROGRAMS to
3232         noinst_PROGRAMS instead.
3233
3234 2003-09-18  Dan Winship  <danw@ximian.com>
3235
3236         * libsoup/soup-message.c: Add wrote_informational and
3237         got_informational signals.
3238
3239         * libsoup/soup-message-client-io.c (get_request_headers): Set the
3240         EXPECT_CONTINUE flag on the message if that header is set.
3241
3242         * libsoup/soup-message-server-io.c (parse_request_headers):
3243         Likewise
3244
3245         * libsoup/soup-message-io.c (io_write): Set read_state to HEADERS
3246         when blocking on an expect-continue. Emit wrote_informational
3247         instead of wrote_headers in the 1xx case.
3248         (io_read): Set read_state to BLOCKING, not NOT_STARTED after
3249         reading a 100 Continue response. Emit got_informational instead of
3250         got_headers in the 1xx case.
3251
3252         * libsoup/soup-session.c (soup_session_send_message): Reorder
3253         things to deal with the fact that the message could finish right
3254         away if there is a connection available and the server is very
3255         close.
3256
3257         * libsoup/soup-status.h: Rename SOUP_STATUS_CLASS_TRANSPORT to
3258         SOUP_STATUS_CLASS_TRANSPORT_ERROR.
3259
3260 2003-09-17  Dan Winship  <danw@ximian.com>
3261
3262         * libsoup/soup-session.c (find_oldest_connection): Fix two bugs
3263         (one that pruned too little, one that pruned too much).
3264         (queue_message): When requeuing, don't run the queue;
3265         final_finished will take care of that later.
3266         (soup_session_abort): New, to cancel all pending requests.
3267
3268         * libsoup/soup-socket.c (soup_socket_connect, got_address): ref
3269         the socket while waiting for the address to resolve
3270
3271 2003-09-17  Dan Winship  <danw@ximian.com>
3272
3273         * libsoup/soup-connection.c (soup_connection_new): Replaces the
3274         three previous soup_connection_new* functions and uses gobject
3275         properties to set the destination and proxy uris.
3276         (class_init): set up two more signals, authenticate and
3277         reauthenticate.
3278         (soup_connection_send_request): virtualize
3279         (send_request): Default implementation
3280
3281         * libsoup/soup-connection-ntlm.c: New SoupConnection subclass that
3282         also handles NTLM authentication. Includes all of the NTLM code
3283         formerly in soup-auth-ntlm.c.
3284
3285         * libsoup/soup-auth-ntlm.[ch]: Gone.
3286
3287         * libsoup/soup-auth.c: Remove NTLM refs
3288
3289         * libsoup/soup-session.c (class_init): Add gobject properties for
3290         proxy, max_conns, use_ntlm. Change the "authenticate" and
3291         "reauthenticate" signal prototypes to not pass a SoupAuth (so they
3292         can be used for authenticating SoupConnectionNTLM as well, which
3293         doesn't use a SoupAuth).
3294         (soup_session_new): Renamed from soup_session_new_default.
3295         (soup_session_new_with_options): Replaces
3296         soup_session_new_with_proxy and soup_session_new_full. Takes
3297         gobject properties.
3298         (run_queue): Create a new connection of type SoupConnection or
3299         SoupConnectionNTLM depending on our "use_ntlm" property. Connect
3300         to its authenticate and reauthenticate signals.
3301         (connection_authenticate, connection_reauthenticate): proxy these
3302         signals.
3303
3304         * libsoup/soup-address.c (update_address_from_entry): Fix a
3305         crasher when failing to resolve the address.
3306
3307         * libsoup/soup-dns.c (check_hostent): Fix some "how was this
3308         working before" bugs.
3309
3310         * libsoup/soup-message-client-io.c (soup_message_send_request):
3311         call soup_message_prepare() to clean up the existing response
3312         state.
3313
3314         * libsoup/soup-message-io.c (io_error): Set the read_state to DONE
3315         when processing an OK EOF.
3316
3317         * libsoup/soup-status.h (SoupStatusClass): fix the numbering of
3318         these so that SOUP_STATUS_CLASS_SUCCESS is 2, etc.
3319
3320         * tests/auth-test.c (authenticate, reauthenticate): Update for new
3321         prototypes.
3322         (main): Use soup_session_new.
3323         * tests/get.c (main): Likewise.
3324         * tests/simple-proxy.c (main): Likewise.
3325
3326 2003-09-10  Dan Winship  <danw@ximian.com>
3327
3328         * libsoup/soup-session.c: Add "authenticate" and "reauthenticate"
3329         signals.
3330         (invalidate_auth): Remove the call to soup_auth_invalidate.
3331         (authenticate_auth): soup_auth_fn is gone. If the URI doesn't
3332         contain authentication, then emit "authenticate" or
3333         "reauthenticate" (depending on whether or not this is the first
3334         time we've asked for a password for this auth).
3335         (update_auth_internal): If the server rejects our
3336         username/password, don't bail out immediately. Try doing a
3337         "reauthenticate" first.
3338
3339         * libsoup/soup-misc.c (soup_set_authorize_callback): Gone
3340
3341         * libsoup/soup-auth.c (soup_auth_new_from_header_list): Remove the
3342         "pref" arg.
3343         (soup_auth_invalidate): Remove this; it doesn't actually do
3344         anything useful for us.
3345
3346         * libsoup/soup-auth-basic.c (invalidate): Remove
3347         * libsoup/soup-auth-digest.c: (invalidate): Remove
3348         * libsoup/soup-auth-ntlm.c: (invalidate): Remove
3349
3350         * libsoup/soup-uri.c: Remove all references to "authmech".
3351         (soup_uri_set_auth): Remove this too.
3352
3353         * tests/auth-test.c: Update to use the "authenticate" and
3354         "reauthenticate" signals instead of encoding usernames and
3355         passwords in the URIs. Add a few more test cases.
3356
3357 2003-09-10  Dan Winship  <danw@ximian.com>
3358
3359         * libsoup/soup-message-private.h (SoupMessagePrivate): Remove the
3360         "status" field from here, since it's mostly used by SoupSession,
3361         which shouldn't need access to SoupMessagePrivate.
3362
3363         * libsoup/soup-message.h (SoupMessage): Move it here.
3364         (SoupCallbackFn): Remove this alias for SoupMessageCallbackFn.
3365         (soup_message_set_uri): also moved from soup-message-private.h
3366
3367         * libsoup/soup-message.c: s/msg->priv->status/msg->status/.
3368
3369         * libsoup/soup-message-handlers.c:
3370         s/SoupCallbackFn/SoupMessageCallbackFn/ everywhere.
3371
3372         * libsoup/soup-message-io.c (soup_message_io_client,
3373         soup_message_io_server, soup_message_io_unpause): Don't set up an
3374         idle handler, just jump right in to reading/writing; if this is a
3375         synchronous socket, then the caller wants to block, and if it's
3376         not, then we'll quickly get an EAGAIN anyway.
3377
3378         * libsoup/soup-session.c: (queue_message): Likewise.
3379         (*) Update for SoupMessageStatus move and remove
3380         soup-message-private.h include.
3381
3382         * libsoup/soup-server-message.c: Remove soup-message-private.h
3383         include.
3384
3385         * libsoup/soup-server.c: Likewise.
3386
3387         * libsoup/soup-connection.c (soup_connection_is_connected,
3388         soup_connection_is_new): Remove these, since they weren't being
3389         used.
3390
3391         * libsoup/soup-md5-utils.c: Moved from md5-utils.c and renamed, to
3392         avoid namespace pollution.
3393
3394         * libsoup/soup-auth-digest.c: Update for that.
3395         * libsoup/soup-server-auth.c: Likewise
3396
3397         * tests/auth-test.c: Remove soup-message-private.h include
3398
3399 2003-09-09  Dan Winship  <danw@ximian.com>
3400
3401         Beginnings of improved synchronous API support
3402
3403         * libsoup/soup-dns.c: Simplify this by making it not automatically
3404         return the result: force the caller to poll. (This isn't really a
3405         performance issue: the results should come back quickly anyway.)
3406         Also, make the cache thread-safe.
3407         (soup_dns_entry_from_name): Was soup_gethostbyname
3408         (soup_dns_entry_from_addr): Was soup_gethostbyaddr
3409         (soup_dns_entry_check_lookup): Used to poll to see if DNS is done
3410         (soup_dns_entry_get_hostent): Gets the hostent from an entry (and
3411         blocks if it's not resolved yet).
3412
3413         * libsoup/soup-address.c: Update for soup-dns changes.
3414         (soup_address_new): Don't automatically start resolving the
3415         hostname now, since we don't know if the caller is going to want
3416         it resolved synchronously or asynchronously.
3417         (soup_address_resolve_async): Renamed from soup_address_resolve.
3418         (soup_address_resolve_sync): New routine to do blocking
3419         synchronous DNS.
3420
3421         * libsoup/soup-socket.c (soup_socket_connect): Now returns a
3422         status value directly when connecting synchronously.
3423         (soup_socket_client_new_async, soup_socket_client_new_sync):
3424         Separate async/sync client socket functions.
3425         (soup_socket_get_iochannel): Made static since it was not used
3426         outside soup-socket.
3427
3428         * libsoup/soup-connection.c (soup_connection_new,
3429         soup_connection_new_proxy, soup_connection_new_tunnel): Just set
3430         up the data, don't actually start connecting.
3431         (soup_connection_connect_async, soup_connection_connect_sync): New
3432         async and sync SoupConnection connecting routines.
3433         (soup_connection_get_socket): Remove this since it wasn't being
3434         used.
3435
3436         * libsoup/soup-session.c (final_finished): Run the queue since a
3437         connection is now freed up.
3438         (run_queue): Update for soup_connection_new* changes.
3439
3440         * libsoup/soup-misc.c (soup_substring_index): Remove, since it
3441         wasn't being used any more.
3442
3443         * libsoup/soup-private.h: Remove some prototypes for functions
3444         that no longer exist.
3445
3446         * libsoup/soup-uri.c (soup_uri_copy_root): New utility function
3447         (copies the protocol, host, and port of a SoupUri).
3448
3449         * tests/auth-test.c:
3450         * tests/get.c:
3451         * tests/simple-proxy.c: belatedly update for soup-session change
3452
3453         * tests/revserver.c: Handle each new connection in its own thread,
3454         using synchronous SoupSocket calls.
3455
3456 2003-09-05  Dan Winship  <danw@ximian.com>
3457
3458         * libsoup/soup-session.c: Move a bunch of logic here from
3459         soup-context. Now the session keeps track of hosts (instead of
3460         having a global soup_hosts hash) and their connections.
3461         (soup_session_new_with_proxy, soup_session_new_full): New session
3462         constructors to specify a proxy or a proxy and connection limits
3463         (send_request): Add Authorization and Proxy-Authorization headers
3464         before sending off the request.
3465         (soup_session_queue_message, et al): Improve the way this works.
3466         There's no need to use timeouts to wait for connections to become
3467         free; we *know* when they become free.
3468
3469         * libsoup/soup-private.h: Remove SoupHost and some other
3470         no-longer-used stuff.
3471
3472         * libsoup/soup-misc.c (soup_set_proxy, soup_get_proxy,
3473         soup_set_connection_limit, soup_set_connection_limit): Gone. These
3474         are all per-session now.
3475
3476         * libsoup/soup-message.c: Remove all SoupContext references
3477         (mostly replaced with SoupUri references)
3478         (cleanup_message): priv->connect_tag and priv->connection are gone
3479         now, so this was just soup_message_io_cancel(). So remove
3480         cleanup_message and replace it with that everywhere.
3481         (soup_message_disconnect): Gone.
3482         (soup_message_set_uri): Replaces soup_message_set_context.
3483         (soup_message_set_connection, soup_message_get_connection): Gone
3484
3485         * libsoup/soup-message-server-io.c (parse_request_headers):
3486         s/soup_message_set_context/soup_message_set_uri/
3487
3488         * libsoup/soup-message-private.h (SoupMessagePrivate): Remove
3489         connect_tag, context, and connection.
3490
3491         * libsoup/soup-message-client-io.c (encode_http_auth): Gone.
3492
3493         * libsoup/soup-context.c: Gone
3494
3495         * tests/auth-test.c (identify_auth): update for session/context
3496         changes
3497
3498 2003-09-03  Dan Winship  <danw@ximian.com>
3499
3500         * libsoup/soup-status.h: Renamed from soup-error.h, with types
3501         and defines renamed accordingly.
3502
3503         * libsoup/soup-message.h (SoupMessage): Rename errorcode to
3504         status_code and errorphrase to reason_phrase. Remove errorclass.
3505         (SOUP_MESSAGE_IS_ERROR): Remove this. You can't classify redirects
3506         as being either "errors" or "not errors", so its semantics are
3507         guaranteed to be wrong sometimes.
3508
3509         * libsoup/soup-message.c (soup_message_set_status,
3510         soup_message_set_status_full): Renamed
3511
3512         * libsoup/soup-message-handlers.c
3513         (soup_message_add_status_code_handler,
3514         soup_message_add_status_class_handler): Rename.
3515
3516         * libsoup/soup-session.c (soup_session_send_message): Make this
3517         return a status code rather than a status class.
3518
3519         * libsoup/soup-message-private.h (SoupMessagePrivate): Remove some
3520         unrelated unused fields (retries, callback, user_data).
3521
3522         * ...: Updates
3523
3524 2003-09-02  Dan Winship  <danw@ximian.com>
3525
3526         * libsoup/soup-session.c: First draft at the new object to
3527         maintain formerly-global state. (Not yet complete; still need to
3528         get rid of SoupContext).
3529
3530         * libsoup/soup-message-queue.c: Data structure used by SoupSession
3531
3532         * libsoup/soup-queue.c: Gone. Mostly moved into soup-session, but
3533         some bits went into soup-connection.
3534
3535         * libsoup/soup-connection.c (soup_connection_send_request): New,
3536         to send a request on a connection. The connection updates its
3537         internal state and then hands off to soup_message_send_request.
3538         (request_done): Callback set up by soup_connection_send_request.
3539         Marks the connection as no-longer-in-use, and disconnects it if
3540         the message says to.
3541         (soup_connection_set_in_use, soup_connection_mark_old): No longer
3542         needed; the connection takes care of this itself now.
3543         (soup_connection_new_proxy): New, to create a new connection that
3544         is explicitly marked as being through an HTTP proxy.
3545         (soup_connection_new_tunnel): New, to create a new HTTPS
3546         connection through a proxy. (Includes the code to send the
3547         CONNECT.)
3548
3549         * libsoup/soup-context.c (try_existing_connections): Don't need to
3550         call soup_connection_set_in_use.
3551         (try_create_connection): Use soup_connection_new,
3552         soup_connection_new_proxy, or soup_connection_new_tunnel as
3553         appropriate.
3554
3555         * libsoup/soup-message.c (soup_message_prepare): Replaces
3556         queue_message.
3557         (soup_message_queue, soup_message_requeue, soup_message_prepare):
3558         Gone. This must be done via a SoupSession now.
3559         (soup_message_set_connection): don't need to mark in_use/not
3560         in_use. Also, msg->priv->socket is gone now.
3561         (soup_message_get_socket): Gone.
3562
3563         * libsoup/soup-message-handlers.c (soup_message_run_handlers):
3564         Remove references to global handlers.
3565         (redirect_handler, authorize_handler): Moved to soup-session.c.
3566
3567         * libsoup/soup-misc.c (soup_shutdown): Gone; just unref the
3568         session to shut down now.
3569
3570         * libsoup/soup.h: add soup-session.h
3571
3572         * libsoup/Makefile.am: updates
3573
3574         * tests/auth-test.c, tests/get.c, tests/simple-proxy.c: Use
3575         SoupSession.
3576
3577 2003-08-29  Dan Winship  <danw@ximian.com>
3578
3579         * libsoup/soup-message-io.c: Major rewrite. There is now only a
3580         single IO state object (instead of one for reading and one for
3581         writing), and the IO code handles switching back and forth between
3582         reading and writing as appropriate (including handling the extra
3583         switches needed for "Expect: 100-continue").
3584         (soup_message_io_client, soup_message_io_server): The new entry
3585         points.
3586         (soup_message_io_cancel): If the caller cancels the IO when we
3587         were expecting to read more data, disconnect the socket.
3588
3589         * libsoup/soup-message.h (SoupMessageFlags): add
3590         SOUP_MESSAGE_EXPECT_CONTINUE, to indicate that the IO code should
3591         do the special expect-continue handling.
3592
3593         * libsoup/soup-message.c: Move all the signal stuff here. Remove
3594         the "done_reading" and "done_writing" signals and replace them
3595         with a single "finished" signal. (A single signal. Say that 10
3596         times fast!)
3597         (soup_message_got_headers, etc): Functions to emit signals.
3598         (got_headers, got_chunk, got_body): Default signal methods that
3599         call soup_message_run_handlers.
3600         (finished): Default signal method that replaces
3601         soup_message_issue_callback.
3602         ([various]): s/soup_message_issue_callback/soup_message_finished/
3603         (soup_message_requeue): There's no soup_message_set_read_callbacks
3604         any more, so if the caller requeues while it's still reading, just
3605         cancel the read.
3606         (soup_message_add_chunk, soup_message_add_final_chunk,
3607         soup_message_pop_chunk): Moved here from soup-server-message,
3608         although we don't actually quite support using chunked encoding
3609         for requests yet.
3610
3611         * libsoup/soup-server-message.c (soup_server_message_new): No
3612         longer takes a socket argument.
3613         (soup_server_message_add_chunk, soup_server_message_get_chunk):
3614         Moved into SoupMessage.
3615
3616         * libsoup/soup-message-handlers.c (global_handlers): Make these
3617         POST_BODY rather than PRE_BODY, so they won't mess up the IO
3618         channel when the requeue the message.
3619         (soup_message_run_handlers): Don't need to issue the message
3620         callback from here any more.
3621         (authorize_handler): Just leave the error as 401 or 407 (see
3622         soup-error.h change)
3623
3624         * libsoup/soup-message-client-io.c (soup_message_send_request):
3625         Replaces soup_message_write_request and
3626         soup_message_read_response.
3627
3628         * libsoup/soup-message-server-io.c: Parallel to
3629         soup-message-client-io.c, this defines the server-side header
3630         handling.
3631         (soup_message_read_request): Its entry point.
3632
3633         * libsoup/soup-server.c: Lots of code moved into
3634         soup-message-server-io.c. Update for other changes.
3635
3636         * libsoup/soup-queue.c: Update for changes
3637
3638         * libsoup/soup-socket.c (read_from_network, soup_socket_write):
3639         Don't call soup_socket_disconnect() on an error, just return
3640         SOUP_SOCKET_ERROR. Otherwise soup_socket_disconnect() could emit
3641         signals that will mess up the caller of the read/write function.
3642
3643         * libsoup/soup-connection.c (soup_connection_disconnect): When
3644         disconnecting the socket, disconnect from its signals first to
3645         prevent bad reentrancy.
3646
3647         * libsoup/soup-error.h: Kill off SOUP_ERROR_CANT_AUTHENTICATE and
3648         SOUP_ERROR_CANT_AUTHENTICATE_PROXY, since they don't really say
3649         anything that SOUP_ERROR_UNATHORIZED and
3650         SOUP_ERROR_PROXY_UNAUTHORIZED don't say. (And now, all of the
3651         "transport" errors actually are transport-related.)
3652
3653         * tests/auth-test.c (main): s/CANT_AUTHENTICATE/UNAUTHORIZED/
3654
3655         * tests/simple-proxy.c: Complicate this a bunch. In particular,
3656         use SOUP_MESSAGE_OVERWRITE_CHUNKS and the GOT_CHUNK signal, and
3657         pass the data back to the client in chunked format.
3658
3659 2003-08-27  Dan Winship  <danw@ximian.com>
3660
3661         * libsoup/soup-types.h: New header with typedefs, to avoid
3662         #include loops among other headers.
3663
3664         * libsoup/Makefile.am (libsoupinclude_HEADERS): add it
3665
3666         * libsoup/*.[ch], tests/*.c: Update for soup-types.h
3667         
3668 2003-08-26  Dan Winship  <danw@ximian.com>
3669
3670         * libsoup/soup-message-client-io.c (soup_message_write_request,
3671         soup_message_read_response): Higher-than-soup-message-io-level
3672         functions to do client-side IO. (Code that used to be in
3673         soup-queue.c)
3674         (get_request_header_cb): Fix a bug in the generation of the Host:
3675         header; need to include the port number if it's not the default.
3676
3677         * libsoup/soup-message-io.c (soup_message_write,
3678         soup_message_write_simple): Take separate user_datas for the get_*
3679         callbacks and the done callbacks.
3680
3681         * libsoup/soup-queue.c: Update to use soup_message_write_request
3682         and soup_message_read_response.
3683
3684         * libsoup/soup-connection.c (soup_connection_new): Change the
3685         prototype to take a SoupUri and a callback.
3686
3687         * libsoup/soup-context.c (try_create_connection,
3688         soup_context_connect_cb): Update for soup_connection_new change.
3689
3690         * libsoup/soup-server.c (read_done_cb, issue_bad_request): Update
3691         for soup_message_write changes
3692
3693         * libsoup/soup-uri.c (soup_uri_uses_default_port): new utility
3694         function
3695
3696 2003-08-26  Dan Winship  <danw@ximian.com>
3697
3698         * libsoup/soup-message-private.h: Define SoupMessage signal stuff
3699         (READ_HEADERS, READ_CHUNK, READ_BODY, READ_ERROR, WROTE_HEADERS,
3700         WROTE_CHUNK, WROTE_BODY, WRITE_ERROR).
3701
3702         * libsoup/soup-message.c (class_init): set up signals
3703         (requeue_read_finished): Update for changes.
3704
3705         * libsoup/soup-message-io.c (soup_message_read): Split out
3706         parse_headers_cb from read_headers_cb. Also add a SoupDataBuffer *
3707         arg to say where to store the message body. Set up
3708         read_headers_cb, read_chunk_cb, read_body_cb, and error_cb as
3709         signal handlers.
3710         (do_read): Call r->parse_headers_cb, then emit READ_HEADERS
3711         (read_body_chunk): emit READ_CHUNK.
3712         (issue_final_callback): Set r->body. emit READ_BODY.
3713         (failed_read): emit READ_ERROR.
3714         (soup_message_read_set_callbacks): Disconnect old signal handlers,
3715         connect new ones.
3716         (soup_message_read_cancel): Disconnect signal handlers.
3717         (soup_message_write, soup_message_write_simple): Set up
3718         wrote_body_cb and error_cb as signal handlers.
3719         (do_write): emit WROTE_HEADERS and WROTE_CHUNK, even though
3720         nothing currently ever listens for them. emit WROTE_BODY when
3721         done.
3722         (failed_write): emit WRITE_ERROR
3723
3724         * libsoup/soup-queue.c (soup_queue_parse_headers_cb,
3725         soup_queue_read_headers_cb): Split this into two unequal chunks.
3726         (read_header_cb only runs the pre-body handlers).
3727         (soup_queue_read_chunk_cb, soup_queue_read_done_cb): Update
3728         prototypes.
3729         (soup_queue_write_done_cb): Update call to soup_message_read
3730
3731         * libsoup/soup-server.c (parse_headers_cb): Renamed from
3732         read_headers_cb
3733         (read_done_cb): Update prototype
3734         (start_request): Update soup_message_read call.
3735
3736 2003-08-25  Dan Winship  <danw@ximian.com>
3737
3738         * libsoup/soup-message-io.c (soup_message_read,
3739         soup_message_write, soup_message_write_simple): Add a "user_data"
3740         arg, pass it to the callbacks.
3741
3742         * libsoup/soup-message.c (soup_message_requeue,
3743         requeue_read_finished, requeue_read_error): Update for that
3744
3745         * libsoup/soup-queue.c: Likewise
3746
3747         * libsoup/soup-server.c: Likewise
3748
3749 2003-08-25  Dan Winship  <danw@ximian.com>
3750
3751         * libsoup/soup-message.c (soup_message_new): Take a uri string
3752         instead of a context. Also, swap the args (so the method comes
3753         before the URI, just like in the protocol).
3754         (soup_message_new_from_uri): Like soup_messgae_new, but takes a
3755         SoupUri instead of a string
3756         (soup_message_set_request, soup_message_set_response): Replace
3757         soup_message_new_full.
3758         (cleanup_message): Was soup_message_cleanup, but is static now.
3759         (queue_message): Do the pre-queuing message cleanup here instead
3760         of in soup_queue_message.
3761         (soup_message_queue): Set the callback and user_data, then call
3762         queue_message.
3763         (requeue_read_error, requeue_read_finished, soup_message_requeue):
3764         Use queue_message
3765         (soup_message_get_uri): Replaces soup_message_get_context.
3766
3767         * libsoup/soup-message.h (SoupMessage): Remove msg->context. (It's
3768         part of SoupMessagePrivate now)
3769
3770         * libsoup/soup-context.c: #include soup-message-private
3771         (soup_context_from_uri): constify the uri arg.
3772
3773         * libsoup/soup-queue.c: Various context/uri fixes
3774         (proxy_https_connect): Use soup_message_new_from_uri.
3775         (soup_queue_message): Drastically simplified since most of the
3776         work is in soup-messsage.c:queue_message() now
3777
3778         * libsoup/soup-auth-digest.c (compute_response,
3779         get_authorization): Use soup_message_get_uri.
3780
3781         * libsoup/soup-server-auth.c (parse_digest): Likewise
3782
3783         * libsoup/soup-server.c (call_handler): Likewise
3784
3785         * tests/simple-httpd.c (server_callback): Likewise.
3786
3787         * tests/simple-proxy.c (server_callback): Likewise
3788
3789         * tests/get.c (got_url): Likewise.
3790         (get_url): Update soup_message_new usage.
3791
3792         * tests/auth-test.c: #include soup-message-private. Update for
3793         context changes and soup_message_new change.
3794
3795 2003-08-22  Dan Winship  <danw@ximian.com>
3796
3797         * libsoup/soup-message-private.h: New file containing
3798         SoupMessagePrivate and some other soup-message-internal
3799         types/functions. Also includes the new, expanded SoupMessageStatus
3800         enum.
3801
3802         * libsoup/soup-message-io.c: Replaces what used to be in
3803         soup-transfer, but now all the interfaces take SoupMessages
3804         instead of SoupReader/SoupWriter and deal with maintaining
3805         msg->priv->{read,write}_state themselves. Fixes up all the
3806         refcounting madness.
3807
3808         * libsoup/soup-message-handlers.c: Move the handler code here,
3809         mostly unchanged. (But rename SoupHandlerType to SoupHandlerPhase
3810         to make the distinction from SoupHandlerKind clearer.)
3811
3812         * libsoup/soup-message.c: Update for soup-message-io and new
3813         SoupMessageStatus values. Remove handler code.
3814         (soup_message_cleanup): Remove the hack to try to preserve the
3815         connection if the message gets cleaned up before it finishes
3816         reading. soup_message_requeue handles this in the requeuing case,
3817         and there's no especially compelling reason to bother doing it in
3818         any other case. (And the soup-message-io api doesn't support
3819         having a read operation that's not connected to any message.)
3820
3821         * libsoup/soup-private.h: remove SoupMessagePrivate
3822
3823         * libsoup/soup-queue.c: Update for soup-message-io and new
3824         SoupMessageStatus values.
3825
3826         * libsoup/soup-server-message.c: Likewise
3827
3828         * libsoup/soup-server.c: Likewise
3829
3830         * libsoup/soup-transfer.c: Gone (yay)
3831
3832         * libsoup/Makefile.am (libsoup_2_2_la_SOURCES): update
3833
3834 2003-08-20  Dan Winship  <danw@ximian.com>
3835
3836         * libsoup/soup-message.c: Make this a GObject. (Note that since
3837         SoupMessage was not refcounted before, it's not really refcounted
3838         now either. TBF)
3839         (soup_message_free): Gone, replaced by g_object_unref
3840         (soup_message_copy, soup_message_foreach_remove_header): Remove
3841         these, since neither was currently functional.
3842         (soup_message_is_keepalive): New utility function to look at
3843         HTTP version and request/response headers to decide if a message
3844         indicates the connection should be kept alive.
3845         (soup_message_set_connection, soup_message_get_connection): New
3846         (soup_message_get_socket): New
3847
3848         * libsoup/soup-server-message.c: Make this a subclass of
3849         SoupMessage.
3850         (soup_server_message_new): Now takes a SoupServer and SoupSocket
3851         (soup_server_message_get_server): New
3852         (soup_server_message_set_encoding,
3853         soup_server_message_get_encoding): Get/set whether the message
3854         should be sent with content-length or chunked encoding
3855         (soup_server_message_is_started, soup_server_message_is_finished):
3856         Private member accessors.
3857         (soup_server_message_add_chunk): Renamed from add_data
3858         (soup_server_message_get_chunk): Pops a chunk from the list.
3859         (soup_server_message_get_source): Gone
3860
3861         * libsoup/soup-server.c: Update for SoupServerMessage changes.
3862         (error_cb, write_done_cb): All the cleanup stuff that used to be
3863         here happens automatically by unreffing the message now.
3864         (get_response_header): Remove some erroneous leftover CGI stuff
3865         (issue_bad_request): add "Connection: close" to the response.
3866         (read_headers_cb): clean this up a bit. Reject HTTP/1.1 messages
3867         with no Host header as per RFC 2616.
3868
3869         * libsoup/soup-connection.c (soup_connection_start_ssl): Gone
3870         (soup_connection_set_in_use): Let the caller set the connection to
3871         "not in use" even after the socket has been disconnected.
3872
3873         * libsoup/soup-context.c: Use soup_message_get_connection
3874
3875         * libsoup/soup-headers.c (soup_headers_parse_request): Remove the
3876         check on request length, since it was rejecting
3877         "GET / HTTP/1.0\r\n\r\n", which is a valid complete request.
3878
3879         * libsoup/soup-queue.c: Use soup_message_get_connection and
3880         soup_message_get_socket.
3881         (soup_queue_read_done_cb): Use soup_message_is_keepalive
3882         (proxy_https_connect_cb): Use soup_socket_start_ssl rather than
3883         soup_connection_start_ssl
3884
3885         * libsoup/soup-socket.c (finalize): disconnect the GIOChannel
3886         handlers if the socket hasn't been disconnected yet.
3887
3888         * libsoup/soup-transfer.c (soup_reader_read_body_chunk,
3889         reader_read): Fix these so that reader_read will exit properly if
3890         the read is cancelled.
3891
3892         * tests/auth-test.c (main): s/soup_message_free/g_object_unref/
3893
3894         * tests/simple-httpd.c (server_callback): set the message to
3895         content-length encoding.
3896         * tests/simple-proxy.c (server_callback): Likewise
3897
3898 2003-08-19  Dan Winship  <danw@ximian.com>
3899
3900         * libsoup/soup-socket.c (soup_socket_read,
3901         soup_socket_read_until, soup_socket_write): New API for doing
3902         socket IO. Works both synchronously and asynchronously, and
3903         buffers data to prevent the "100 Continue" problem.
3904         (soup_socket_set_flag): Replaces formerly-private
3905         soup_set_sockopts. (primarily to let the caller turn off
3906         SOUP_SOCKET_FLAG_NONBLOCKING).
3907
3908         * libsoup/soup-transfer.c (soup_transfer_read,
3909         soup_transfer_write, soup_transfer_write_simple): Take a
3910         SoupSocket instead of a GIOChannel. Use the new socket IO api.
3911         Changed the prototypes of some of the callbacks to be less
3912         hackish.
3913
3914         * libsoup/soup-connection.c (soup_connection_get_socket): Replaces
3915         soup_connection_get_iochannel.
3916
3917         * libsoup/soup-message.c: Fix up for soup-transfer changes
3918
3919         * libsoup/soup-queue.c: Likewise
3920
3921         * libsoup/soup-server.c: Likewise
3922
3923         * tests/revserver.c: A slightly more complicated replacement for
3924         timeserver. (Does both reads and writes)
3925
3926 2003-08-19  Dan Winship  <danw@ximian.com>
3927
3928         * libsoup/soup-socks.[ch]: Remove this. RC doesn't let you
3929         configure it, and no one has complained, and it looks like the
3930         SOCKS5 auth code doesn't actually work anyway...
3931
3932         * libsoup/soup-queue.c (proxy_connect): Remove SOCKS code.
3933
3934         * libsoup/soup-uri.h: Remove SOUP_PROTOCOL_SOCKS4 and
3935         SOUP_PROTOCOL_SOCKS5
3936
3937         * libsoup/soup-misc.c: Remove a references to SOCKS in a comment
3938
3939         * libsoup/Makefile.am (libsoup_2_2_la_SOURCES): remove
3940         soup-socks.[ch]
3941
3942 2003-08-19  Dan Winship  <danw@ximian.com>
3943
3944         * libsoup/soup-server.c: Make this a GObject. Remove
3945         SoupServerMessage code (to soup-server-message.c). Remove CGI
3946         server code (for now?)
3947         (soup_server_add_handler, soup_server_remove_handler): Rename
3948         (from register/unregister) to make it clearer what they do.
3949
3950         * libsoup/soup-server-message.c: Moved out of soup-server.c
3951
3952         * libsoup/soup-private.h: Remove SoupServer def
3953
3954         * libsoup/Makefile.am (libsoupinclude_HEADERS,
3955         libsoup_2_2_la_SOURCES): add soup-server-message.[ch]
3956
3957         * tests/simple-httpd.c: 
3958         * tests/simple-proxy.c: Update for SoupServer changes
3959
3960 2003-08-18  Dan Winship  <danw@ximian.com>
3961
3962         * libsoup/soup-address.c (SoupAddressPrivate): Make this more like
3963         a struct sockaddr again (like it used to be). In particular, add
3964         back the "port" field. Add a bunch of macros to try (and fail) to
3965         simplify some of the code.
3966         (soup_address_new): Now returns a SoupAddress directly rather than
3967         a random handle, and the caller can just use g_object_unref to
3968         cancel the lookup. Also, the callback now uses a
3969         SoupKnownErrorCode rather than a special-purpose address-lookup
3970         error code.
3971         (soup_address_new_cancel): No longer needed.
3972         (soup_address_new_sync): Removed
3973         (soup_address_new_any): Replaces soup_address_ipv4_any and
3974         soup_address_ipv6_any.
3975         (soup_address_get_name, etc): Gone. Use soup_address_resolve()
3976         now.
3977         (soup_address_get_physical): Renamed from
3978         soup_address_get_canonical_name.
3979         (soup_address_get_sockaddr): Replaces soup_address_make_sockaddr()
3980
3981         * libsoup/soup-socket.c: Update for SoupAddress changes and make
3982         similar changes here.
3983         (soup_socket_new): Just creates a generic SoupSocket now.
3984         (soup_socket_connect): Client setup
3985         (soup_socket_listen): Server setup. Now also sets up an iochannel
3986         listening for connects and emits a "new_connection" signal as they
3987         come in.
3988         (soup_socket_start_ssl): Turns on SSL.
3989         (soup_socket_client_new, soup_socket_server_new): Utility
3990         functions that wrap the above.
3991         (soup_socket_new_cancel, soup_socket_new_sync): Gone
3992         (soup_socket_server_accept, soup_socket_server_try_accept): No
3993         longer needed.
3994         (soup_socket_get_iochannel): No longer adds a ref when returning
3995         the iochannel. Also, we set it to "close_on_unref" so that if a
3996         caller adds a ref to it, the connection will actually remain open
3997         even after the SoupSocket is destroyed.
3998         (soup_socket_get_local_address, soup_socket_get_remote_address):
3999         Let the caller get both of these.
4000
4001         * libsoup/soup-connection.c: Don't keep a private copy of the
4002         socket's iochannel.
4003         (soup_connection_new): Don't need to set socket options here.
4004         SoupSocket does it.
4005         (soup_connection_start_ssl): Just call soup_socket_start_ssl.
4006         (soup_connection_get_iochannel): Just return the socket's
4007         iochannel (and don't ref it)
4008
4009         * libsoup/soup-error.c: add SOUP_ERROR_CANT_RESOLVE and
4010         SOUP_ERROR_CANT_RESOLVE_PROXY
4011
4012         * libsoup/soup-dns.c (soup_ntop): Make the address arg const.
4013         Remove the "FIXME add a CANT_RESOLVE error" and return
4014         SOUP_ERROR_CANT_RESOLVE instead.
4015
4016         * libsoup/soup-server.c: Update for socket/address changes. Don't
4017         poke into SoupSocket's private fields.
4018         (soup_server_run_async): Just connect to the socket's
4019         "new_connection" signal.
4020
4021         * libsoup/soup-context.c (try_create_connection,
4022         soup_context_connect_cb): Update for socket changes. Replace
4023         SOUP_CONNECT_ERROR codes with plain SOUP_ERROR codes.
4024
4025         * libsoup/soup-misc.c (soup_signal_connect_once): Utility function
4026         to connect to a signal handler and connect another function to
4027         clean up the first signal handler after its first invocation.
4028         (Lets us use signals to replace one-off callbacks.)
4029
4030         * libsoup/soup-private.h: Remove SoupSocketPrivate since it is
4031         actually private now.
4032         (struct _SoupServer): Remove accept_tag.
4033
4034         * libsoup/soup-queue.c (soup_queue_read_done_cb, start_request):
4035         Don't unref the iochannel.
4036         (soup_queue_connect_cb): Takes a SoupKnownErrorCode now.
4037
4038         * libsoup/soup-socks.c: Update for socket/address changes
4039
4040         * tests/simple-httpd.c (main):
4041         s/SOUP_SERVER_ANY_PORT/SOUP_ADDRESS_ANY_PORT/
4042         * tests/simple-proxy.c (main): Likewise
4043
4044         * tests/timeserver.c: Update for SoupSocket's "new_connection"
4045         signal, and for SoupAddress changes.
4046
4047 2003-08-14  Dan Winship  <danw@ximian.com>
4048
4049         * libsoup/soup-connection.c: New, split out from soup-context and
4050         made into a GObject.
4051         (soup_connection_disconnect): Disconnects the connection and emits
4052         a signal. (Replaces the old "keep_alive" flag.)
4053         (soup_connection_is_connected): Checks if the connection is still
4054         connected
4055         (connection_died): Just disconnect, rather than freeing the
4056         connection. This way if anyone else is still referencing it they
4057         won't end up with an invalid pointer.
4058
4059         * libsoup/soup-context.c: Make this a GObject, remove all the
4060         SoupConnection code. Add an "ntlm_auths" field to SoupHost so that
4061         SoupContext can keep track of connection auth stuff there without
4062         SoupConnection needing to care. Various other updates.
4063
4064         * libsoup/soup-private.h: Remove SoupContext and SoupConnection
4065         definitions.
4066
4067         * libsoup/*.c, tests/get.c: Update for context/connection changes
4068
4069         * libsoup/soup-socks.c (soup_connect_socks_proxy): Change the
4070         definition to deal with the fact that there's no
4071         soup_connection_get_context any more.
4072
4073         * libsoup/soup-queue.c (soup_queue_read_headers_cb): Don't deal
4074         with connection persistence here.
4075         (soup_queue_read_done_cb): Do it here instead. Disconnect the
4076         connection when appropriate.
4077         (proxy_connect, proxy_https_connect, proxy_https_connect_cb):
4078         Reference-count the connection properly. (I think.)
4079
4080         * libsoup/soup-marshal.list: New, for SoupConnection's
4081         "disconnected" signal.
4082
4083         * libsoup/Makefile.am: add rules to build soup-marshal.[ch]
4084
4085         * configure.in: Use AM_PATH_GLIB_2 rather than pkg-config, so that
4086         GLIB_GENMARSHAL gets set too.
4087
4088 2003-08-14  Dan Winship  <danw@ximian.com>
4089
4090         * libsoup/soup-error.c: Fix a spelling mistake.
4091
4092         * libsoup/*.c: Fix use of @/%/#/() in gtk-doc comments
4093
4094 2003-08-12  Dan Winship  <danw@ximian.com>
4095
4096         * libsoup/soup-auth.c: Make this an abstract GObject. Tweak some
4097         of the interfaces around a little bit.
4098
4099         * libsoup/soup-auth-basic.c: subclass for Basic auth
4100
4101         * libsoup/soup-auth-digest.c: subclass for Digest auth
4102
4103         * libsoup/soup-auth-ntlm.c: subclass for NTLM auth. Move all of
4104         the code from soup-ntlm.c here, and make it private.
4105
4106         * libsoup/soup-ntlm.c: gone
4107
4108         * libsoup/soup-misc.h: Remove the definition of SoupAuthType from
4109         here, and change the signature of SoupAuthorizeFn.
4110
4111         * libsoup/soup-context.c: Use g_object_unref to free auths, use
4112         methods instead of directly access private fields.
4113
4114         * libsoup/soup-queue.c: Likewise
4115
4116         * libsoup/soup-server-auth.c (soup_server_auth_free): Remove all
4117         NTLM references. We have no plans to implement server-side NTLM
4118         auth.
4119
4120         * tests/auth-test.c (identify_auth): Update for auth api changes
4121
4122 2003-08-12  Dan Winship  <danw@ximian.com>
4123
4124         * configure.in (GLIB): add gobject-2.0 to the PKG_CHECK_MODULES
4125         call
4126
4127         * libsoup/soup-address.c: Make this a GObject.
4128         (soup_address_ref, soup_address_unref): Gone.
4129         (soup_address_copy): Gone. Wasn't being used anyway.
4130
4131         * libsoup/soup-dns.c: Move all of the DNS code and caching stuff
4132         here from soup-address.c, so that soup-address doesn't need to
4133         worry about trying to cache zero-ref addresses.
4134
4135         * libsoup/soup-socket.c: Make this a GObject. Use "guint"
4136         consistently for port numbers.
4137         (soup_socket_ref, soup_socket_unref): Gone.
4138
4139         * libsoup/soup-private.h: Change the SoupSocket definition to be
4140         SoupSocketPrivate. (Still need to keep this here since soup-server
4141         pokes around in its internals.)
4142         (SOUP_MAKE_TYPE): Copied from gal's E_MAKE_TYPE.
4143
4144         * libsoup/soup-server.c (read_done_cb, write_done_cb): Unref the
4145         reader/writer rather than leaking them.
4146
4147         * libsoup/*: Use GObject methods for socket/address refcounting
4148         
4149         * tests/auth-test.c (main)
4150         * tests/timeserver.c (main): Call g_type_init.
4151
4152         * tests/get.c (main): Call g_type_init.
4153         (get_url, got_url): Fix some bugs that could make -r mode get into
4154         infinite loops downloading the same files over and over. Plug some
4155         memory leaks to make this more useful for valgrinding libsoup.
4156
4157         * tests/simple-httpd.c (main): Call g_type_init. Set up a signal
4158         handler for SIGINT so we can exit cleanly, since valgrind won't
4159         give a leak report if you don't. Plug a few memory leaks.
4160
4161         * tests/simple-proxy.c (main): Likewise 
4162
4163 2003-08-12  Dan Winship  <danw@ximian.com>
4164
4165         Pull over some new test programs from the soup-refactoring branch,
4166         along with the SoupUri changes they depend on.
4167
4168         * tests/simple-httpd.c: A really simple HTTP server, to test the
4169         server code.
4170
4171         * tests/simple-proxy.c: An even simpler HTTP proxy
4172
4173         * tests/get.c: Add "-r" flag to recursively get files (thereby
4174         testing multiple-connections-at-once code). Also good for setting
4175         up a tree to use with simple-httpd.
4176
4177         * tests/timeserver.c (main): Fix a bug. (s/ipv6/ipv4/ in the
4178         normal case)
4179
4180         * tests/uri-parsing.c: Regression test for the new soup-uri.c
4181
4182         * libsoup/soup-uri.c: Rewrite/update to conform to RFC 2396, and
4183         pull in some optimizations from camel-url. Also, make SoupProtocol
4184         a GQuark so we can still compare them with ==, but we can also
4185         recognize any protocol.
4186         (soup_uri_new_with_base): New, to merge base and relative URIs
4187         (soup_uri_to_string): Update this. Change the "show_password" flag
4188         (which we always passed FALSE for) to "just_path", for places that
4189         want the path+query without the protocol, host, etc.
4190
4191         * libsoup/soup-queue.c (soup_get_request_header): Just use
4192         soup_uri_to_string to generate the request URI.
4193
4194         * libsoup/soup-auth.c (compute_response, digest_auth_func): Use
4195         "soup_uri_to_path (uri, TRUE)" rather than trying to reassemble
4196         the URI by hand badly.
4197         * libsoup/soup-server-auth.c (parse_digest): Likewise
4198
4199         * libsoup/soup-socks.c (soup_connect_socks_proxy): Change a
4200         switch() to an series of if()s since SOUP_PROTOCOL_* aren't
4201         constants any more.
4202
4203         * libsoup/soup-context.c (soup_context_uri_hash,
4204         soup_context_uri_equal): s/querystring/query/
4205
4206 2003-08-12  Dan Winship  <danw@ximian.com>
4207
4208         * configure.in: Bump API version to 2.2 and package version to
4209         2.1.0. Remove NSS and OpenSSL checks and proxy-related config. Use
4210         libgnutls-config to find GNUTLS.
4211
4212         * libsoup-2.2.pc.in: Update, and rename from soup-2.0.pc
4213
4214         * Makefile.am: Update for pc file rename
4215
4216         * libsoup/Makefile.am: s/2.0/2.2/ everywhere. Remove NSS, OpenSSL,
4217         and libsoup-ssl-proxy stuff.
4218
4219         * libsoup/soup-ssl-proxy.c
4220         * libsoup/soup-nss.[ch]
4221         * libsoup/soup-openssl.[ch]: gone
4222
4223         * libsoup/soup-ssl.c: remove NSS and OpenSSL bits
4224
4225         * tests/Makefile.am (get_LDADD, timeserver_LDADD,
4226         auth_test_LDADD): Update libsoup version
4227
4228 2003-08-07  Dan Winship  <danw@ximian.com>
4229
4230         * libsoup/soup-auth.c (soup_auth_lookup, soup_auth_set_context,
4231         soup_auth_invalidate): These are all really SoupContext functions,
4232         so move them to soup-context.c (and rename them appropriately).
4233         (soup_auth_get_protection_space): New method to get the
4234         "protection space" of an auth (paths where it is valid).
4235         (soup_auth_invalidate): New method to try to un-authenticate an
4236         auth (so we can keep the domain info cached even if the auth info
4237         is wrong).
4238         (basic_pspace_func): Basic protection space is all directories
4239         below the current one.
4240         (basic_invalidate_func): Clear the encoded username/password
4241         (digest_pspace_func): Digest protection space is either the whole
4242         server, or "what the domain parameter says" (though we don't deal
4243         with cross-host domains).
4244         (digest_invalidate_func): Return FALSE; bad digest auth info isn't
4245         cacheable.
4246         (digest_parse_func, digest_free): Set/free domain parameter
4247         (ntlm_pspace): NTLM protection space is always the whole server.
4248         (ntlm_invalidate): Clear the auth state.
4249         (soup_auth_new_ntlm): Make this non-static
4250         (SoupAuth): Replace the quad-state "status" field with an
4251         "authenticated" boolean.
4252         
4253         * libsoup/soup-private.h (SoupHost): Replace the "valid_auths"
4254         hash with separate "auth_realms" (path->realm) and "auths"
4255         (realm->auth) hashes. Also add a "use_ntlm" flag.
4256
4257         * libsoup/soup-context.c (soup_context_unref): Update SoupHost
4258         freeing code.
4259         (connection_free): Don't the connection's auth, just free it.
4260         (soup_context_lookup_auth): Formerly soup_auth_lookup, but now
4261         does two-stage lookup (path->realm then realm->auth) and also
4262         deals with NTLM hacks.
4263         (soup_context_update_auth): Mostly formerly soup_auth_set_context,
4264         but also large parts of authorize_handler. Updates the auth hashes
4265         based on information from a 401 or 407 response. Does a better job
4266         than authorize_handler did of not throwing away good information.
4267         (soup_context_preauthenticate): New; fakes up auth info so that
4268         requests will end up using authentication without the server
4269         needing to return an error first.
4270         (soup_context_authenticate_auth): Moved out of authorize_handler
4271         so it can be used at request-sending time too, if we know that we
4272         need it. (That way we can avoid requeuing the request if it isn't
4273         going to be able to be authenticated.)
4274         (soup_context_invalidate_auth): Sort of like the old
4275         soup_auth_invalidate, but only destroys the auth data, while still
4276         remembering the path->realm mapping.
4277
4278         * libsoup/soup-message.c (authorize_handler): Mostly moved into
4279         soup_context_update_auth.
4280         (maybe_validate_auth): Remove this; it was only useful because of
4281         bugs elsewhere in the auth handling.
4282         
4283         * libsoup/soup-queue.c (soup_encode_http_auth): Update for
4284         soup_context_lookup_auth. If the returned auth isn't
4285         authenticated, call soup_context_authenticate_auth() on it.
4286
4287         * tests/auth-test.c: New (from soup-refactoring branch). Tests
4288         that the Basic/Digest auth code does the right thing. (TODO: find
4289         a good way to add NTLM tests too.)
4290
4291         * tests/Makefile.am (check_PROGRAMS): add auth-test
4292
4293 2003-07-29  Dan Winship  <danw@ximian.com>
4294
4295         * configure.in: 1.99.25 ("Potato and Leek Soup")
4296
4297         * libsoup/soup-message.c (requeue_read_finished,
4298         release_connection): Free the passed-in body data. Otherwise the
4299         response body ends up getting leaked on most 3xx and 4xx
4300         responses.
4301         (soup_message_cleanup): Remove a piece of code that didn't
4302         actually do anything and its associated confused comment.
4303
4304         * libsoup/soup-auth.c (ntlm_free): plug an occasional NTLM auth leak
4305
4306         * libsoup/soup-context.c (connection_free): plug a non-occasional
4307         NTLM auth leak.
4308
4309 2003-06-26  Joe Shaw  <joe@ximian.com>
4310
4311         * configure.in: Version 1.99.24
4312
4313 2003-06-24  Dan Winship  <danw@ximian.com>
4314
4315         * configure.in: Check pkgconfig for openssl, since 0.9.7 (a) uses
4316         it, and (b) depends on lots of new things sometimes (like on RH9).
4317
4318         * libsoup/soup-openssl.c: 
4319         * libsoup/soup-ssl-proxy.c: Change #ifdef HAVE_OPENSSL_SSL_H to
4320         just #ifdef HAVE_OPENSSL since the header check doesn't get run in
4321         the pkgconfig case
4322
4323 2003-06-19  Dan Winship  <danw@ximian.com>
4324
4325         * libsoup/soup-queue.c (soup_queue_read_done_cb): unref the
4326         old read_tag before changing/clearing it.
4327         (soup_queue_write_done_cb): Likewise with the write_tag.
4328
4329         * libsoup/soup-transfer.c (issue_final_callback): ref the reader
4330         around the stop+callback.
4331         (soup_transfer_write_cb): Likewise.
4332
4333 2003-06-12  Dan Winship  <danw@ximian.com>
4334
4335         * libsoup/soup-transfer.c (SoupReader, SoupWriter): add a
4336         ref_count field.
4337         (soup_transfer_read, create_writer): Set initial ref_count to 2
4338         (one for soup-transfer, one for the caller).
4339         (soup_transfer_read_ref, soup_transfer_read_unref): ref/unref a
4340         reader
4341         (soup_transfer_read_stop): Clears the GIOChannel callbacks and
4342         drops soup-transfer's ref.
4343         (soup_transfer_read_cancel): Now just a stop+unref
4344         (soup_transfer_write_ref, soup_transfer_write_unref,
4345         soup_transfer_write_stop, soup_transfer_write_cancel): Similarly.
4346
4347         * libsoup/soup-message.c (soup_message_cleanup): when setting up
4348         the "finish reading" callbacks, unref the reader so it will be
4349         destroyed once it's done reading.
4350         (soup_message_requeue): Likewise.
4351
4352         * libsoup/soup-queue.c (soup_queue_read_headers_cb): Update for
4353         prototype change (no longer returns a SoupTransferDone).
4354         (soup_queue_read_chunk_cb): Likewise.
4355
4356         * libsoup/soup-server.c (read_headers_cb): Likewise
4357
4358 2003-06-11  Dan Winship  <danw@ximian.com>
4359
4360         * libsoup/soup-transfer.c: Change all functions to take a
4361         SoupReader * or SoupWriter * instead of a guint.
4362
4363         * libsoup/soup-private.h (SoupMessagePrivate): make read_tag and
4364         write_tag pointers instead of guints.
4365
4366 2003-06-02  Chris Toshok  <toshok@ximian.com>
4367
4368         * libsoup/soup-ssl.c: remove #include for soup-nss.h
4369
4370 2003-06-02  Chris Toshok  <toshok@ximian.com>
4371
4372         * libsoup/Makefile.am (INCLUDES): remove NSS_CFLAGS.
4373         (libsoup_2_0_la_LIBADD): remove NSS_LIBS.
4374         (libsoup_2_0_la_SOURCES): remove soup-nss.[ch]
4375
4376 2003-06-02  Chris Toshok  <toshok@ximian.com>
4377
4378         * configure.in: Bump version to 1.99.23.
4379
4380 2003-05-30  Chris Toshok  <toshok@ximian.com>
4381
4382         * libsoup/soup-queue.c (soup_queue_error_cb): always force a
4383         reconnect when there's an error with ssl connection.  This fixes
4384         #43387, but it runs the risk of sending requests multiple times to
4385         the exchange server, and it results in lots of shorter lived
4386         connections and more forking (in the ssl proxy case), depending on
4387         the length of the operation.
4388
4389 2003-05-21  Dan Winship  <danw@ximian.com>
4390
4391         * configure.in: 1.99.22 (codename: French Onion Soup)
4392
4393 2003-05-20  Dan Winship  <danw@ximian.com>
4394
4395         * libsoup/soup-message.c (soup_message_requeue): Clear the
4396         write_tag as well so we don't double-cancel it. #43395.
4397
4398         * libsoup/soup-queue.c (soup_queue_error_cb): The connection might
4399         be destroyed by the end of the func, so we have to call
4400         soup_connection_set_used at the beginning.
4401
4402         * libsoup/soup-openssl.c (soup_openssl_read, soup_openssl_write):
4403         Call g_set_error() so that we don't SEGV immediately after
4404         returning G_IO_STATUS_ERROR.
4405
4406 2003-05-08  Joe Shaw  <joe@ximian.com>
4407
4408         * configure.in: Bump version to 1.99.21
4409
4410         * libsoup/soup-queue.c (proxy_connect): If the proxy HTTPS
4411         tunnelling fails, the other message which shares our same
4412         connection will free it first, so set ours to NULL.
4413
4414 2003-05-08  Dan Winship  <danw@ximian.com>
4415
4416         * libsoup/soup-auth.c (ntlm_auth): If the auth status is PENDING,
4417         return an NTLM request string. Otherwise return the "response"
4418         field (which should include the NTLM authenticate message)
4419         (ntlm_init): Don't bother setting "response" to the NTLM request
4420         string. Just leave it NULL in that case.
4421
4422         * libsoup/soup-message.c (authorize_handler): Never try to reuse
4423         an NTLM auth returned from soup_auth_lookup. Only set the auth on
4424         the connection when it's SOUP_AUTH_STATUS_SUCCESSFUL. Otherwise,
4425         call soup_auth_set_context() on it just like for non-NTLM auth.
4426         The net effect of all of this is that now we record when a context
4427         needs NTLM auth just like with non-NTLM auth, so that that info
4428         gets preserved across connections.
4429         (soup_message_requeue): No longer need the hackery here to
4430         preserve the connection auth state.
4431
4432 2003-05-07  Dan Winship  <danw@ximian.com>
4433
4434         * libsoup/soup-context.c (soup_connection_set_in_use): New, to
4435         toggle the connection's in_use flag, and set up the death watch
4436         when it's not in use.
4437         (connection_death): This is only hooked up when the connection is
4438         not in use now, so don't need to check that. Should fix the
4439         infinite connection_death loop.
4440         (soup_connection_is_new): Keep a distinct "new" flag rather than
4441         defining "new" as "has been released at least once".
4442         (soup_connection_set_used): Mark a connection no-longer new.
4443         (soup_context_connect_cb): Mark the connection as new. Don't set
4444         up the death watch since it's in_use.
4445         (try_existing_connections): Use soup_connection_set_in_use.
4446         (soup_connection_release): Likewise
4447
4448         * libsoup/soup-message.c (requeue_read_finished): Call
4449         soup_connection_set_used so that the connection isn't still
4450         considered new when we send the message the second time.
4451
4452         * libsoup/soup-queue.c (soup_queue_error_cb): Call
4453         soup_connection_set_used (assuming we don't close the connection)
4454         (soup_queue_read_done_cb): Likewise.
4455
4456         * libsoup/soup-transfer.c (soup_transfer_read_cb): If we read
4457         nothing, call soup_transfer_read_error_cb rather than just
4458         cancelling, or else it will get cancelled again later.
4459
4460 2003-05-07  Dan Winship  <danw@ximian.com>
4461
4462         * soup-2.0.pc.in (Libs): Don't put @OPENSSL_LIBS@ here; the
4463         library doesn't depend on them, only the proxy does. #42473
4464
4465 2003-05-06  Dan Winship  <danw@ximian.com>
4466
4467         * src/libsoup/soup-message.c (global_handlers): Change the
4468         redirect handler to be a RESPONSE_ERROR_CLASS_HANDLER for
4469         SOUP_ERROR_CLASS_REDIRECT rather than a RESPONSE_HEADER_HANDLER
4470         for "Location" to get around the non-64-bit-clean union
4471         initialization pointed out by Jeremy Katz <katzj@redhat.com>.
4472         (redirect_handler): Update for that.
4473
4474 2003-04-28  Dan Winship  <danw@ximian.com>
4475
4476         * configure.in: 1.99.20
4477
4478         * libsoup/soup-transfer.c (soup_transfer_read_error_cb): Make sure
4479         we always call UNIGNORE_CANCEL. Might fix #41971
4480
4481 2003-04-25  Dan Winship  <danw@ximian.com>
4482
4483         * libsoup/soup-queue.c (soup_queue_error_cb): if an old connection
4484         suddenly gets an io error while reading or writing, assume it's a
4485         timeout or something, close the connection, and requeue the
4486         message.
4487
4488 2003-04-23  Dan Winship  <danw@ximian.com>
4489
4490         * libsoup/soup-message.c (soup_message_cleanup): Don't set up the
4491         soup-transfer callbacks to keep reading off the connection unless
4492         we're actually going to keep the connection around afterward.
4493         Otherwise we can just close it.
4494
4495         * libsoup/soup-transfer.c: Re-kludge the awful IGNORE_CANCEL
4496         thingy so that it's possible to cancel a read from inside a
4497         callback so that the above change actually works instead of just
4498         crashing.
4499
4500 2003-04-20  Rodney Dawes  <dobey@ximian.com>
4501
4502         * configure.in: Up version to 1.99.18
4503         * libsoup/Makefile.am: Line separator after GNUTLS_CFLAGS
4504         
4505 2003-04-11  Dan Winship  <danw@ximian.com>
4506
4507         * libsoup/soup-context.c (soup_connection_purge_idle): New
4508         function to close all idle connections. (Needed for #41117 or else
4509         there's no way to force-discard NTLM authentication.)
4510
4511         * libsoup/soup-queue.c (soup_queue_shutdown): Use it
4512
4513 2003-04-10  Joe Shaw  <joe@ximian.com>
4514
4515         * libsoup/soup-queue.c (proxy_https_connect):
4516         proxy_https_connect_cb() might not get called if connecting to the
4517         proxy fails, and it causes us to double-free the connection.
4518         Always set the message's connection to NULL before freeing it.
4519
4520 2003-04-09  Dan Winship  <danw@ximian.com>
4521
4522         * configure.in: 1.99.17
4523
4524 2003-04-07  Dan Winship  <danw@ximian.com>
4525
4526         * libsoup/soup-context.c (connection_death): Revert Joe's changes.
4527         We can't release the connection there because there may be
4528         SoupMessages still pointing to it. (Needs to be revisited.)
4529
4530 2003-04-03  JP Rosevear  <jpr@ximian.com>
4531
4532         * libsoup/soup-ssl.c (soup_ssl_hup_waitpid): guard against EINTR
4533         error during waitpid
4534
4535         * libsoup/soup-address.c: ditto
4536
4537 2003-04-02  Joe Shaw  <joe@ximian.com>
4538
4539         * libsoup/soup-context.c (connection_death): Only drop the
4540         connection if we get an error condition on the channel.  Fixes a
4541         double-free.
4542
4543 2003-04-02  Joe Shaw  <joe@ximian.com>
4544
4545         * libsoup/soup-context.c (connection_death): Just call
4546         soup_connection_release() from here and return whether the
4547         connection is in use.
4548
4549 2003-03-31  Ian Peters  <itp@ximian.com>
4550
4551         * libsoup/soup-gnutls.c (soup_gnutls_close): loop on gnutls_bye in
4552         case of EAGAIN or EINTR, since shutting down an SSL connection
4553         requires more than just closing a socket.
4554
4555 2003-03-28  Dan Winship  <danw@ximian.com>
4556
4557         * libsoup/soup-message.c (soup_message_set_context): If the new
4558         context points to a different server from the old context, call
4559         soup_message_cleanup. Otherwise it tries to reuse the old
4560         connection...
4561
4562 2003-03-25  Joe Shaw  <joe@ximian.com>
4563
4564         * configure.in: Bump up to 1.99.16
4565
4566 2003-03-24  Joe Shaw  <joe@ximian.com>
4567
4568         * soup-error.[ch]: Add SOUP_ERROR_SSL_FAILED which gives a
4569         slightly better error message on various SSL failures than the
4570         previous message.
4571
4572         * soup-queue.c (soup_queue_error_cb): Throw the
4573         SOUP_ERROR_SSL_FAILED error when we fail an SSL handshake.
4574
4575 2003-03-21  Joe Shaw  <joe@ximian.com>
4576
4577         * soup-server.c: Use non-deprecated g_main_loop_* calls
4578         throughout.
4579         (soup_server_unref): Don't unref the main loop if it's NULL.
4580         Fixes a glib warning.
4581
4582 2003-03-18  Dan Winship  <danw@ximian.com>
4583
4584         * configure.in: comment out NSS checks. The NSS code doesn't work
4585         and there are no current plans to fix it.
4586
4587         * README (Features): Mention GnuTLS, remove NSS and the rest of
4588         the "Planned Features" section.
4589
4590         * MAINTAINERS: remove Alex
4591
4592         * libsoup/soup-openssl.c (soup_openssl_get_iochannel): Bump the
4593         timeout to 10 seconds (and get rid of the 3 tries) so we don't
4594         fail to connect just because the server is slow/far away.
4595
4596 2003-03-17  Joe Shaw  <joe@ximian.com>
4597
4598         * configure.in: Bump up to 1.99.15.
4599
4600 2003-03-12  Ian Peters  <itp@ximian.com>
4601
4602         * libsoup/soup-gnutls.c: because creating client credentials is
4603         expensive, keep the same one around as long as possible, only
4604         recreating it if the ssl_ca_file changes.  Wrap
4605         gnutls_certificate_credentials in a refcounted struct to avoid
4606         freeing it while another established connection may potentially
4607         need it (say, to rehandshake).
4608
4609 2003-03-11  Frank Belew  <frb@ximian.com>
4610
4611         * soup-2.0.pc.in: add ssl libs to defaults, since ssl doesn't 
4612         use pkgconfig
4613
4614 2003-03-10  Joe Shaw  <joe@ximian.com>
4615
4616         * configure.in: Bump up to 1.99.14.
4617
4618         * configure.in, libsoup/Makefile.am, libsoup/soup.gnutls.[ch],
4619         libsoup/soup-ssl.c: Add support for GnuTLS.  Patch from Ian
4620         Peters.
4621
4622 2003-03-07  Joe Shaw  <joe@ximian.com>
4623
4624         * configure.in: Bump up to 1.99.13.
4625
4626         * libsoup/soup-context.c (soup_context_connect_cb): Add G_IO_IN to
4627         the list of conditions to watch.  If the remote end hangs up the
4628         connection, we'll get a successful read of 0 bytes, not a HUP.
4629         The connection will have to be released by the point we check for
4630         it in connection_death().
4631
4632         * libsoup/soup-queue.c (soup_queue_error_cb): Get rid of some
4633         (apparently) errant resetting of the read and write tags.  I think
4634         this might have been causing some reentrancy and crashes.
4635
4636         * libsoup/soup-socket.c (soup_socket_get_iochannel): Set the IO
4637         channel to NULL encoding and not buffered.
4638
4639         * libsoup/soup-transfer.c (soup_transfer_read_cb): Remove some
4640         incorrect comments.
4641
4642 2003-02-28  Joe Shaw  <joe@ximian.com>
4643
4644         * configure.in: Bump up to 1.99.12.
4645
4646         * libsoup/soup-transfer.c (soup_transfer_read_cb): We can get a
4647         header_len of 0 and a total_read of 0 in the case of a SIGPIPE; in
4648         this case we probably don't want to call the error callback, we
4649         just want to act like our transfer was cancelled.
4650
4651 2003-02-27  Joe Shaw  <joe@ximian.com>
4652
4653         Try to apply some order to the iochannel refcounting...
4654
4655         * configure.in: Bump up to 1.99.11.
4656
4657         * libsoup/soup-context.c (soup_connection_get_iochannel): The
4658         connections needs to own a reference to the iochannel!  If we're
4659         using HTTPS, release the ref we get from soup_socket_get_iochannel
4660         and replace it with the ref we get from soup_ssl_get_iochannel().
4661         Then, always ref the channel that we return (ugh, but that's the
4662         soup way).
4663         (connection_free): Release the connection's ref to the iochannel.
4664
4665         * libsoup/soup-ssl.c (soup_ssl_get_iochannel_real): Ref the
4666         iochannel. The reference we pass back will be owned by the
4667         connection.
4668         (soup_ssl_hup_waitpid): Release our ref.
4669
4670 2003-02-27  Joe Shaw  <joe@ximian.com>
4671
4672         * configure.in: Bump up to 1.99.10.
4673
4674         * libsoup/soup-ssl.c (soup_ssl_get_iochannel_real): Ref the
4675         iochannel, return to the status quo.  Sigh.
4676
4677 2003-02-26  Joe Shaw  <joe@ximian.com>
4678
4679         * configure.in: Bump up to 1.99.9.
4680
4681         * libsoup/soup-ssl.c (soup_ssl_hup_waitpid): Comment out the unref,
4682         it's causing problems with HTTPS and proxies; the iochannel
4683         refcounting is waaaaaay horked.
4684
4685 2003-02-26  Frank Belew  <frb@ximian.com>
4686
4687         * libsoup/Makefile.am: added workaround to link ssl-proxy statically
4688
4689 2003-02-11  Joe Shaw  <joe@ximian.com>
4690
4691         * configure.in: Bump up to 1.99.8 for snaps.
4692
4693         * libsoup/soup-address.c (soup_gethostbyname): Fix this for Solaris.
4694         It returns the address to the resulting hostent or NULL on failure,
4695         unlike Linux which returns an error code.
4696
4697 2003-02-11  Joe Shaw  <joe@ximian.com>
4698
4699         * configure.in: Bump up to 1.99.7 for snaps.
4700
4701         * libsoup/soup-openssl.c (soup_openssl_get_iochannel): Print out
4702         the error string from OpenSSL if we can't establish a connection.
4703
4704 2003-02-04  Joe Shaw  <joe@ximian.com>
4705
4706         * configure.in: Bump up to 1.99.6 for snaps.
4707
4708         * libsoup/soup-server.c (destroy_message): We already assigned
4709         chan, so don't reassign it, and unref it in all cases.
4710         (issue_bad_request): Always unref after a call to
4711         soup_socket_get_iochannel(), because it refs it.
4712         (conn_accept): Fix some funky GIOChannel reffing here.
4713
4714         * libsoup/soup-ssl.c (soup_ssl_get_iochannel_real): Don't call
4715         g_io_channel_ref() on the socket.  This is the exact opposite of
4716         what we want to do.  Create a temporary structure containing the
4717         parent pid and the old socket and unref the socket when our
4718         callback is called.  This should fix GIOChannels being leaked on
4719         SSL connections.
4720
4721         * libsoup/soup-ssl-proxy.c: Always close the GIOChannels after the
4722         main loop quits.
4723
4724 2003-01-22  Joe Shaw  <joe@ximian.com>
4725
4726         * configure.in: Bump up to 1.99.5 for the snaps.
4727
4728         * libsoup/soup-address.c (soup_address_new): If we found the
4729         address in our hash, we need to return NULL or else Soup will
4730         think we're doing an async lookup and do some cancellation on
4731         us.  Besides, we were returning the wrong type anyway and it
4732         was crashing things.
4733
4734 2003-01-17  Joe Shaw  <joe@ximian.com>
4735
4736         * libsoup/soup-ssl-proxy.c (soup_ssl_proxy_readwrite): It's not
4737         uncommon for us to get a G_IO_ERROR_AGAIN when trying to write
4738         out, so keep trying until we succeed.
4739
4740 2003-01-10  Joe Shaw  <joe@ximian.com>
4741
4742         * libsoup/soup-openssl.c (verify_cb): Load some X509 and SSL error
4743         strings and print out the error when the cert can't verify.
4744
4745 2003-01-09  Dan Winship  <danw@ximian.com>
4746
4747         * libsoup/soup-address.c (soup_gethostbyname): Fix a memcpy
4748         overrun noticed by valgrind
4749
4750 2002-12-20  Joe Shaw  <joe@ximian.com>
4751
4752         * libsoup/soup-server.c (soup_server_new_with_host): Added.
4753         Starts a server only on the interface specified, instead of all
4754         network interfaces.
4755
4756 2002-12-16  Jeremy Katz  <katzj@redhat.com>
4757
4758         * configure.in: use $libdir instead of /usr/lib when looking for
4759         libraries
4760
4761 2002-12-11  Joe Shaw  <joe@ximian.com>
4762
4763         * libsoup/soup-queue.c (proxy_https_connect_cb): I am an idiot.
4764         Don't set a variable to NULL and then immediately try to
4765         dereference it.
4766
4767 2002-12-09  Joe Shaw  <joe@ximian.com>
4768
4769         * libsoup/soup-openssl.c (soup_openssl_get_iochannel): Put a
4770         timeout on the select()s when we get SSL_ERROR_WANT_READ/WRITE so
4771         we don't hang forever if we don't get more data.
4772
4773         * libsoup/soup-ssl-proxy.c (main): Don't set our fds to blocking
4774         or else we'll hang forever in SSL_connect() if the other side
4775         hangs up.
4776
4777         * libsoup/soup-queue.c (proxy_https_connect_cb): We never want to
4778         release the connection on message free, even if the connection was
4779         unsuccessful.
4780
4781 2002-12-03  Joe Shaw  <joe@ximian.com>
4782
4783         * libsoup/soup-ssl.c (soup_ssl_get_iochannel_real): Call
4784         g_io_channel_set_close_on_unref() on the second half of the socket
4785         pair so we don't leak file descriptors.
4786
4787 2002-12-03  Frank Belew  <frb@ximian.com>
4788
4789         * libsoup/soup-address.c: add signal.h to the list of headers to 
4790         pick up SIGKILL
4791         
4792 2002-11-25  Joe Shaw  <joe@ximian.com>
4793
4794         * Makefile.am: Build the tests directory again
4795
4796 2002-11-21  Rodney Dawes  <dobey@ximian.com>
4797
4798         * configure.in: Don't require autoconf 2.5x, needs to work with 2.13
4799         
4800 2002-11-20  Michael Meeks  <michael@ximian.com>
4801
4802         * configure.in: require autoconf 2.52 not 2.53.
4803
4804 2002-11-18  Dan Winship  <danw@ximian.com>
4805
4806         * libsoup/soup-address.c (soup_address_hash): Don't use s6_addr32
4807         since it's apparently non-portable. Use s6_addr instead.
4808         (soup_gethostbyaddr): fix a sometimes-uninitialized variable.
4809
4810         * libsoup/soup-error.c: Fix spelling of
4811         SOUP_ERROR_MOVED_PERMANENTLY and its description.
4812
4813         * libsoup/soup-message.c (soup_message_get_request_header, etc):
4814         Remove long-deprecated API.
4815
4816         * libsoup/soup-socket.c (soup_socket_connect): remove unused
4817         variable.
4818
4819         * libsoup/soup-openssl.c (soup_openssl_read): Use gsize.
4820         * libsoup/soup-server.c (cgi_read): Likewise
4821         * libsoup/soup-socks.c (soup_socks_write, soup_socks_read):
4822         Likewise.
4823         * libsoup/soup-ssl-proxy.c (soup_ssl_proxy_readwrite): Likewise.
4824         * libsoup/soup-transfer.c (soup_transfer_read_cb,
4825         soup_transfer_write_cb): Likewise.
4826
4827         * tests/timeserver.c: Add "-6" to listen on the IPv6 local address
4828         instead of IPv4. (Tested on OS X.)
4829
4830 2002-11-15  Dan Winship  <danw@ximian.com>
4831
4832         * libsoup/*: Change old Helix Code refs to Ximian (and update
4833         copyright dates).
4834
4835 2002-11-15  Frank Belew  <frb@ximian.com>
4836
4837         * tests/Makefile.am: uncomment lines to make timeserver build 
4838         correctly
4839         
4840 2002-11-14  Joe Shaw  <joe@ximian.com>
4841
4842         * libsoup/soup-address.c (soup_address_new): When we get an
4843         address from the hash, call our address lookup callback or else
4844         the connection will hang.
4845
4846 2002-11-13  Dan Winship  <danw@ximian.com>
4847
4848         * tests/timeserver.c: Oops, commit this.
4849
4850         * tests/Makefile.am (noinst_PROGRAMS): reenable timeserver.
4851
4852 2002-11-13  Joe Shaw  <joe@ximian.com>
4853
4854         * libsoup/Makefile.am: Replace the BINDIR define with LIBEXECDIR.
4855         (install-exec-hook): Install libsoup-ssl-proxy into libexecdir
4856         instead of bindir.
4857
4858         * libsoup/soup-openssl.c (soup_openssl_close): Call SSL_shutdown()
4859         to properly shut down the SSL connection before closing the
4860         socket.
4861
4862         * libsoup/soup-ssl-proxy.c (soup_ssl_proxy_readwrite): Close the
4863         iochannels before quitting the main loop.
4864
4865         * tests/Makefile.am: disable building timeserver, the source file
4866         wasn't added.
4867
4868 2002-11-12  Dan Winship  <danw@ximian.com>
4869
4870         * configure.in: Check for IPv6 support in networking headers.
4871
4872         * libsoup/soup-address.c: Make the internal structure of
4873         SoupAddress entirely private, and make SoupAddress be more like a
4874         hostent and less like a sockaddr. (Ie, make it not have a port
4875         associated with it.) Document undocumented functions. Add
4876         completely-untested support for IPv6.
4877         (soup_address_new_from_sockaddr): New, to parse a sockaddr into a
4878         SoupAddress and a port.
4879         (soup_address_ipv4_any, soup_address_ipv6_any): Return static
4880         addresses corresponding to the IPv6 and IPv6 "any" addresses.
4881         (soup_address_get_canonical_name): Use inet_ntop/inet_ntoa.
4882         (soup_address_make_sockaddr): Now constructs a new sockaddr, which
4883         may be a sockaddr_in or sockaddr_in6.
4884         (soup_address_gethostname, soup_address_gethostaddr): Remove
4885         these. They aren't reliable, especially on multihomed hosts.
4886         (soup_gethostbyname, soup_gethostbyaddr): support IPv6
4887         (soup_address_new): Keep pending lookups in a separate hash table
4888         from completed lookups. Fix a bug when canceling a lookup when
4889         there was more one outstanding request for it.
4890         (soup_address_lookup_in_cache): Removed.
4891
4892         * libsoup/soup-socket.c: Add a port field to SoupSocket (since
4893         it's not in SoupAddress any more).
4894         (soup_socket_connect): Simplify this. Don't use
4895         soup_address_lookup_in_cache, just call soup_address_new, since we
4896         already know the code can deal with the callback being invoked
4897         immediately.
4898         (soup_socket_new_sync, soup_socket_new): Take a port argument.
4899         (soup_socket_server_new): Take a SoupAddress to use as the local
4900         address to bind to. This lets the caller choose between the IPv4
4901         and IPv6 "any" addresses, and also lets you bind to a single
4902         interface of a multi-homed machine.
4903         (soup_socket_server_accept, soup_socket_server_try_accept): Merge
4904         the common code.
4905
4906         * libsoup/soup-server.c (soup_server_new): Pass
4907         soup_address_ipv4_any() to soup_socket_server_new().
4908
4909         * libsoup/soup-socks.c (soup_connect_socks_proxy,
4910         soup_socks_write): Fix up for the API changes, but it won't work
4911         with IPv6 yet.
4912
4913         * tests/timeserver.c: Another really simple test, for the server
4914         socket code.
4915
4916         * tests/Makefile.am: build timeserver
4917
4918 2002-11-11  Dan Winship  <danw@ximian.com>
4919
4920         * libsoup/soup-address.c: Move the SoupAddress code from
4921         soup-socket.c and soup-socket-unix.c to here.
4922
4923         * libsoup/soup-socket.c: Move the remaining code from
4924         soup-socket-unix.c here.
4925
4926         * libsoup/soup-socket-unix.c: Gone
4927
4928         * tests/get.c: really really trivial test program
4929
4930         * configure.in (AC_OUTPUT):
4931         * Makefile.am (SUBDIRS): add tests/
4932
4933 2002-11-05  Dan Winship  <danw@ximian.com>
4934
4935         * Split libsoup out of soup. ChangeLog.old contains the original
4936         soup ChangeLog.
4937
4938         * Makefile.am, etc: Fix things up to work with the new directory
4939         layout. Disable docs until we fix them.
4940
4941         * autogen.sh: Use gnome-autogen.sh
4942
4943         * configure.in: Require autoconf 2.53. Remove stuff that was only
4944         needed for httpd or wsdl code. Remove glib1 support. Bump version
4945         to 2.0.
4946
4947         * libsoup/Makefile.am: Rename library to libsoup-2.0, put includes
4948         in ${includedir}/soup-2.0
4949         
4950         * libsoup/*: Merge soup-0-7 back onto the trunk. Remove
4951         SOAP-specific stuff, Windows support, and other things that
4952         weren't being maintained.
4953
4954         * soup-config.in, soupConf.sh: Kill these. We only support
4955         pkg-config now.