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.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'libcsoap/soap-router.c') 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 @@ -73,6 +73,14 @@ soap_router_register_service(SoapRouter * router, return; } +void +soap_router_register_security(SoapRouter * router, httpd_auth auth) +{ + router->auth = auth; + + return; +} + void soap_router_register_description(SoapRouter * router, xmlDocPtr wsdl) { -- cgit v1.1-32-gdbae