summaryrefslogtreecommitdiff
path: root/libsoup/soup-auth.h
diff options
context:
space:
mode:
authorAlex Graveley <alex@ximian.com>2001-10-04 17:05:09 +0000
committerAlex Graveley <orph@src.gnome.org>2001-10-04 17:05:09 +0000
commit101c88bb5743853b76e071b52eb1f8711f6f2457 (patch)
treeabe621e05851530e2bf656d0e4420381963e949b /libsoup/soup-auth.h
parent0eb84782222014d7f9ad4fa5f5e92c19769e708e (diff)
downloadlibsoup-101c88bb5743853b76e071b52eb1f8711f6f2457.tar.gz
Call soup_message_get_header_list.
2001-10-04 Alex Graveley <alex@ximian.com> * src/libsoup/soup-message.c (authorize_handler): Call soup_message_get_header_list. * src/libsoup/soup-auth.c (soup_auth_new_from_header_list): Set crypto strength for authentication types, and try to choose the strongest when authenticating. * src/libsoup/soup-queue.c (soup_check_used_headers): Kill warnings. * tests/simple-test.c (list_headers): Handle multiple values for header. * tests/handler-test.c (list_headers): Ditto.
Diffstat (limited to 'libsoup/soup-auth.h')
-rw-r--r--libsoup/soup-auth.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libsoup/soup-auth.h b/libsoup/soup-auth.h
index 119ff0d8..88ce0a37 100644
--- a/libsoup/soup-auth.h
+++ b/libsoup/soup-auth.h
@@ -15,15 +15,15 @@
#include <libsoup/soup-message.h>
#include <libsoup/soup-private.h>
-SoupAuth *soup_auth_new_from_header (SoupContext *context,
- const char *header);
+SoupAuth *soup_auth_new_from_header_list (SoupContext *context,
+ const GSList *header);
-void soup_auth_free (SoupAuth *auth);
+void soup_auth_free (SoupAuth *auth);
-gchar *soup_auth_authorize (SoupAuth *auth,
- SoupMessage *msg);
+gchar *soup_auth_authorize (SoupAuth *auth,
+ SoupMessage *msg);
-gboolean soup_auth_invalidates_prior (SoupAuth *new_auth,
- SoupAuth *old_auth);
+gboolean soup_auth_invalidates_prior (SoupAuth *new_auth,
+ SoupAuth *old_auth);
#endif /* SOUP_AUTH_H */