From 0893c0b34450ccfa46463a71ad0fc588ef16abd7 Mon Sep 17 00:00:00 2001 From: damitha Date: Tue, 31 May 2011 09:16:01 +0000 Subject: Initial checkin of ntlm auth code git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1129586 13f79535-47bb-0310-9956-ffa450edef68 --- include/axis2_http_transport.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'include/axis2_http_transport.h') diff --git a/include/axis2_http_transport.h b/include/axis2_http_transport.h index 25f6e97..7bf5c53 100644 --- a/include/axis2_http_transport.h +++ b/include/axis2_http_transport.h @@ -964,6 +964,21 @@ extern "C" * Proxy authentication password property name */ #define AXIS2_PROXY_AUTH_PASSWD "PROXY_AUTH_PASSWD" + + /** + * NTLM authentication domain property name + */ + #define AXIS2_NTLM_AUTH_DOMAIN "NTLM_AUTH_DOMAIN" + + /** + * NTLM authentication workstation property name + */ + #define AXIS2_NTLM_AUTH_WORKSTATION "NTLM_AUTH_WORKSTATION" + + /** + * NTLM authentication flags property name + */ + #define AXIS2_NTLM_AUTH_FLAGS "NTLM_AUTH_FLAGS" /* #define AXIS2_HTTP_AUTH_TYPE "HTTP_AUTH_TYPE"*/ @@ -977,6 +992,11 @@ extern "C" * HTTP "Digest" authentication */ #define AXIS2_HTTP_AUTH_TYPE_DIGEST "Digest" + + /** + * "NTLM" authentication + */ + #define AXIS2_HTTP_AUTH_TYPE_NTLM "NTLM" /** * Proxy "Basic" authentication @@ -987,6 +1007,11 @@ extern "C" * Proxy "Digest" authentication */ #define AXIS2_PROXY_AUTH_TYPE_DIGEST "Digest" + + /** + * Proxy "NTLM" authentication + */ + #define AXIS2_PROXY_AUTH_TYPE_NTLM "NTLM" /** -- cgit v1.1-32-gdbae