summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-router.c
diff options
context:
space:
mode:
authorGravatar m0gg2006-05-15 06:41:33 +0000
committerGravatar m0gg2006-05-15 06:41:33 +0000
commit015fb3328b8d5c3c76d2e16f7b46d9598722f268 (patch)
tree886ac880f746332fe1ece314821c2648910bac50 /libcsoap/soap-router.c
parent5af10db8fa81b0f74905ae1302aafe43221e4d27 (diff)
downloadcsoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.gz
csoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.bz2
HTTP authentication added
Diffstat (limited to 'libcsoap/soap-router.c')
-rw-r--r--libcsoap/soap-router.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/libcsoap/soap-router.c b/libcsoap/soap-router.c
index c4252c2..ad8edd3 100644
--- a/libcsoap/soap-router.c
+++ b/libcsoap/soap-router.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-router.c,v 1.8 2006/03/07 16:22:24 m0gg Exp $
+* $Id: soap-router.c,v 1.9 2006/05/15 06:41:33 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -74,6 +74,14 @@ soap_router_register_service(SoapRouter * router,
}
void
+soap_router_register_security(SoapRouter * router, httpd_auth auth)
+{
+ router->auth = auth;
+
+ return;
+}
+
+void
soap_router_register_description(SoapRouter * router, xmlDocPtr wsdl)
{
if (router->wsdl)