summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-server.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-server.c
parent5af10db8fa81b0f74905ae1302aafe43221e4d27 (diff)
downloadcsoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.gz
csoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.bz2
HTTP authentication added
Diffstat (limited to 'libcsoap/soap-server.c')
-rw-r--r--libcsoap/soap-server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcsoap/soap-server.c b/libcsoap/soap-server.c
index bf03a3d..d2e577f 100644
--- a/libcsoap/soap-server.c
+++ b/libcsoap/soap-server.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-server.c,v 1.23 2006/04/13 06:22:29 m0gg Exp $
+* $Id: soap-server.c,v 1.24 2006/05/15 06:41:34 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -405,7 +405,7 @@ int
soap_server_register_router(SoapRouter * router, const char *context)
{
- if (!httpd_register(context, soap_server_entry))
+ if (!httpd_register_secure(context, soap_server_entry, router->auth))
{
return 0;
}