diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-17 12:44:57 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-17 12:44:57 +0000 |
commit | 7137d2b9395dc051e2adbe0c83553479646cedb1 (patch) | |
tree | 43b9d98bb245bba34591ee1ee2b62b15a5004f97 /include/m_netlib.h | |
parent | f955b9916066920d8405274dc1d047a675df5fe2 (diff) |
- unused netlib flags removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@16689 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_netlib.h')
-rw-r--r-- | include/m_netlib.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/m_netlib.h b/include/m_netlib.h index accc3db99e..577eb3b2a9 100644 --- a/include/m_netlib.h +++ b/include/m_netlib.h @@ -462,10 +462,7 @@ typedef struct { #define REQUEST_PUT 5
#define REQUEST_DELETE 6
-#define NLHRF_GENERATEHOST 0x00000001 // auto-generate a "Host" header from szUrl
-#define NLHRF_REMOVEHOST 0x00000002 // remove any host and/or protocol portion of szUrl before sending it
-#define NLHRF_SMARTREMOVEHOST 0x00000004 // removes host and/or protocol from szUrl unless the connection was opened through an HTTP or HTTPS proxy.
-#define NLHRF_SMARTAUTHHEADER 0x00000008 // if the connection was opened through an HTTP or HTTPS proxy then send a Proxy-Authorization header if required.
+#define NLHRF_MANUALHOST 0x00000001 // do not remove any host and/or protocol portion of szUrl before sending it
#define NLHRF_HTTP11 0x00000010 // use HTTP 1.1
#define NLHRF_PERSISTENT 0x00000020 // preserve connection on exit, open connection provided in the nlc field of the reply
// it should be supplied in nlc field of request for reuse or closed if not needed
|