Skip to content

Commit

Permalink
Updates wire for new SOCKS Proxy information
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-savchuk committed Sep 7, 2013
1 parent 3da6c1a commit e18d45a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions wire.py
Original file line number Diff line number Diff line change
Expand Up @@ -1681,16 +1681,20 @@ def main():
|| proxyType || string || (Required) The type of proxy being used. Possible \
values are: *direct* - A direct connection - no proxy in use, *manual* - \
Manual proxy settings configured, e.g. setting a proxy for HTTP, a proxy for \
FTP, etc, *pac* - Proxy autoconfiguration from a URL), autodetect (proxy \
FTP, etc, *pac* - Proxy autoconfiguration from a URL, *autodetect* - Proxy \
autodetection, probably with WPAD, *system* - Use system settings ||
|| proxyAutoconfigUrl || string || (Required if proxyType == pac, Ignored \
|| proxyAutoconfigUrl || string || (Required if proxyType == *pac*, Ignored \
otherwise) Specifies the URL to be used for proxy autoconfiguration. \
Expected format example: http://hostname.com:1234/pacfile ||
|| ftpProxy, httpProxy, sslProxy || string || (Optional, Ignored if proxyType \
!= manual) Specifies the proxies to be used for FTP, HTTP and HTTPS requests \
|| ftpProxy, httpProxy, sslProxy, socksProxy || string || (Optional, Ignored if proxyType \
!= *manual*) Specifies the proxies to be used for FTP, HTTP, HTTPS and SOCKS requests \
respectively. Behaviour is undefined if a request is made, where the proxy \
for the particular protocol is undefined, if proxyType is manual. Expected \
for the particular protocol is undefined, if proxyType is *manual*. Expected \
format example: hostname.com:1234 ||
|| socksUsername || string || (Optional, Ignored if proxyType != *manual* and \
socksProxy is not set) Specifies SOCKS proxy username. ||
|| socksPassword || string || (Optional, Ignored if proxyType != *manual* and \
socksProxy is not set) Specifies SOCKS proxy password. ||
</dd>
</dl>
Expand Down

0 comments on commit e18d45a

Please sign in to comment.