summaryrefslogtreecommitdiffstats
path: root/include/axis2_http_transport.h
diff options
context:
space:
mode:
authorGravatar damitha2011-05-31 09:16:01 +0000
committerGravatar damitha2011-05-31 09:16:01 +0000
commit0893c0b34450ccfa46463a71ad0fc588ef16abd7 (patch)
tree691cc2e3145557c028d94a4fb72cc5fcfb458b62 /include/axis2_http_transport.h
parentbcaf5833f0b73566937ad9629d01c943b553abe7 (diff)
downloadaxis2c-0893c0b34450ccfa46463a71ad0fc588ef16abd7.tar.gz
axis2c-0893c0b34450ccfa46463a71ad0fc588ef16abd7.tar.bz2
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
Diffstat (limited to 'include/axis2_http_transport.h')
-rw-r--r--include/axis2_http_transport.h25
1 files changed, 25 insertions, 0 deletions
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"
/**