summaryrefslogtreecommitdiff
path: root/libsoup
Commit message (Expand)AuthorAgeFilesLines
* define some GError codes and stuffDan Winship2004-05-184-7/+55
* Do this less kludgefully, using the magic of GClosure, to fix x86_64Dan Winship2004-05-111-16/+23
* free the elements of priv structure before freeing privSivaiah Nallagatla2004-05-041-0/+20
* if re-sending the message, call soup_message_restarted() (send_request):Dan Winship2004-04-202-7/+30
* Connect to the socket's "disconnect" signal. (We were only doing this fromDan Winship2004-04-152-0/+5
* Fix up types to kill a warning with -Wall -O2Dan Winship2004-03-151-3/+3
* Only loop on EINTR if bytes_read is -1, since the value of errno isDan Winship2004-03-021-2/+2
* removed not-implemented function's prototype.Rodrigo Moya2004-03-011-1/+0
* Use a different variable for linking to the static version of gnutls, soRodney Dawes2004-02-271-3/+4
* Pass gsize *, not guint *, to soup_socket_read/write, to make this work onDan Winship2004-02-201-3/+5
* Fixes #54512Rodrigo Moya2004-02-182-5/+29
* LikewiseDan Winship2004-02-181-1/+1
* Fix a typo. #54433, from Mariano Suarez-Alvarez.Dan Winship2004-02-171-1/+1
* HTTP connections require a hostname, and we also hash on the host forRodney Dawes2004-02-171-0/+5
* Call read() in a do-while loop to prevent DNS errors from short reads.Joe Shaw2004-02-131-2/+10
* Update Joe's comment here with a gory explanation of exactly what's goingDan Winship2004-02-111-6/+38
* Add a workaround for SSL connections which time-out but don't close theJoe Shaw2004-02-102-4/+10
* Ref the filter when adding it. (soup_session_remove_filter): And unref itDan Winship2004-02-061-0/+2
* Don't try to free the hostent if it's NULL. (soup_dns_entry_check_lookup):Joe Shaw2004-02-051-1/+7
* Always remove the WWW-Authenticate headers before returning, so theDan Winship2004-02-051-11/+27
* Call soup_message_io_stop so we don't get a callback on the io after it'sDan Winship2004-02-032-3/+3
* Use memmove rather than memcpy here, since the source and destination willDan Winship2004-02-031-2/+2
* Call gnutls_bye() with the GNUTLS_SHUT_WR flag (instead of RDWR) and checkJoe Shaw2004-02-021-3/+2
* new function.Rodrigo Moya2004-01-292-0/+12
* removed 'const' from return type.Rodrigo Moya2004-01-292-3/+3
* Initialize the certificate before we try to use it. Ahem.Joe Shaw2004-01-291-0/+5
* Require at least GnuTLS 1.0.0.LIBSOUP_2_1_5Joe Shaw2004-01-211-17/+13
* gnutls_bye() doesn't close the socket itself, so we need to do it or elseJoe Shaw2004-01-201-6/+0
* builddir != srcdir fix.Jacob Leach2004-01-191-2/+2
* Remove the check for GNUTLS_CERT_CORRUPTED, it's not in 1.0.x.Joe Shaw2004-01-141-1/+0
* Include the libgnutls.m4 file.Joe Shaw2004-01-093-7/+34
* added code to soup_soap_response_from_string to ignore header elementHarish Krishnaswamy2004-01-091-0/+2
* Remove no-longer-relevant socklen_t checkDan Winship2004-01-052-2/+3
* Lots of thread-safety stuff, primarly so you can disconnect a socket fromDan Winship2003-12-227-59/+136
* If const_path is NULL un the non-proxy case, then use the root ("/").Joe Shaw2003-12-201-0/+3
* New. An interface for objects that want to act on every message passingDan Winship2003-12-1913-40/+328
* Actually disconnect the socket rather than just unreffing it, since the IODan Winship2003-12-182-2/+14
* install soup-message-queue.h with the restRodrigo Moya2003-12-171-1/+1
* remove some dead code to make this compileDan Winship2003-12-171-3/+0
* Add gthread to glib checkDan Winship2003-12-1716-345/+934
* new function.Rodrigo Moya2003-12-162-1/+2
* new function.Rodrigo Moya2003-12-161-0/+12
* Only set up a tunnel if the destination protocol is HTTPS.Joe Shaw2003-12-164-26/+112
* s/guint/gsize/ to match the definitions in soup-socket.c. #52167.Dan Winship2003-12-151-7/+7
* removed debugging of the messages here.Rodrigo Moya2003-12-121-7/+0
* added information for SOAP-ENV namespace.Rodrigo Moya2003-12-121-0/+3
* if we receive an HTTP/1.0 response to an HTTP/1.1 request, downgrade theDan Winship2003-12-106-8/+40
* Use autoconfig to check for socklen_t ...Tambet Ingo2003-12-102-9/+1
* print out request/response's contents, if in debug mode.Rodrigo Moya2003-12-091-1/+9
* new functions to manage SoupSoapParameter's children.Rodrigo Moya2003-11-282-1/+94