summaryrefslogtreecommitdiffstats
path: root/include/axis2_http_transport.h
diff options
context:
space:
mode:
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"
/**