diff options
author | m0gg | 2006-05-15 06:41:33 +0000 |
---|---|---|
committer | m0gg | 2006-05-15 06:41:33 +0000 |
commit | 015fb3328b8d5c3c76d2e16f7b46d9598722f268 (patch) | |
tree | 886ac880f746332fe1ece314821c2648910bac50 /libcsoap/soap-router.h | |
parent | 5af10db8fa81b0f74905ae1302aafe43221e4d27 (diff) | |
download | csoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.gz csoap-015fb3328b8d5c3c76d2e16f7b46d9598722f268.tar.bz2 |
HTTP authentication added
Diffstat (limited to 'libcsoap/soap-router.h')
-rw-r--r-- | libcsoap/soap-router.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libcsoap/soap-router.h b/libcsoap/soap-router.h index ff44988..d75979a 100644 --- a/libcsoap/soap-router.h +++ b/libcsoap/soap-router.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-router.h,v 1.7 2006/03/07 16:22:24 m0gg Exp $ + * $Id: soap-router.h,v 1.8 2006/05/15 06:41:34 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -35,6 +35,7 @@ typedef struct _SoapRouter SoapServiceNode *service_head; SoapServiceNode *service_tail; SoapService *default_service; + httpd_auth auth; xmlDocPtr wsdl; } SoapRouter; @@ -74,6 +75,8 @@ void soap_router_register_default_service(SoapRouter * router, SoapServiceFunc f void soap_router_register_description(SoapRouter *router, xmlDocPtr doc); +void soap_router_register_security(SoapRouter *router, httpd_auth auth); + /** Searches for a registered soap service. |