Mercurial > hg > orthanc
comparison Core/Lua/LuaContext.h @ 1273:88010d8e12cf
Support of HTTP proxy
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 19 Jan 2015 16:08:58 +0100 |
parents | 6f923d52a46c |
children | 6e7e5ed91c2d |
comparison
equal
deleted
inserted
replaced
1272:7442097b41c9 | 1273:88010d8e12cf |
---|---|
100 void SetHttpCredentials(const char* username, | 100 void SetHttpCredentials(const char* username, |
101 const char* password) | 101 const char* password) |
102 { | 102 { |
103 httpClient_.SetCredentials(username, password); | 103 httpClient_.SetCredentials(username, password); |
104 } | 104 } |
105 | |
106 void SetHttpProxy(const std::string& proxy) | |
107 { | |
108 httpClient_.SetProxy(proxy); | |
109 } | |
105 }; | 110 }; |
106 } | 111 } |