You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2008/01/29 06:39:06 UTC

svn commit: r616172 - /webservices/rampart/trunk/c/include/rampart_context.h

Author: kaushalye
Date: Mon Jan 28 21:39:05 2008
New Revision: 616172

URL: http://svn.apache.org/viewvc?rev=616172&view=rev
Log:
Allowing a context to be passed thru the authentication function

Modified:
    webservices/rampart/trunk/c/include/rampart_context.h

Modified: webservices/rampart/trunk/c/include/rampart_context.h
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/include/rampart_context.h?rev=616172&r1=616171&r2=616172&view=diff
==============================================================================
--- webservices/rampart/trunk/c/include/rampart_context.h (original)
+++ webservices/rampart/trunk/c/include/rampart_context.h Mon Jan 28 21:39:05 2008
@@ -60,14 +60,16 @@
     typedef rampart_authn_provider_status_t (AXIS2_CALL*
             auth_password_func)(const axutil_env_t* env,
                                 const axis2_char_t *username,
-                                const axis2_char_t *password);
+                                const axis2_char_t *password,
+                                void *ctx);
 
     typedef rampart_authn_provider_status_t (AXIS2_CALL*
             auth_digest_func)(const axutil_env_t* env,
                               const axis2_char_t *username,
                               const axis2_char_t *nonce,
                               const axis2_char_t *created,
-                              const char *digest);
+                              const char *digest,
+                              void *ctx);