From 015fb3328b8d5c3c76d2e16f7b46d9598722f268 Mon Sep 17 00:00:00 2001 From: m0gg Date: Mon, 15 May 2006 06:41:33 +0000 Subject: HTTP authentication added --- libcsoap/soap-router.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libcsoap/soap-router.h') 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. -- cgit v1.1-32-gdbae