Searched refs:socksocket (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/ |
D | README | 45 The socks module provides a class called "socksocket", which is the base to 47 The socksocket object has the same initialization parameters as the normal socket 48 object to ensure maximal compatibility, however it should be noted that socksocket 50 Generally, it is best to initialize the socksocket object with no parameters 52 >>> s = socks.socksocket() 55 The socksocket object has an interface which is very similiar to socket's (in fact 56 the socksocket class is derived from socket) with a few extra methods. 175 In addition to the socksocket class, an additional function worth mentioning is the 177 This function will set default proxy settings for newly created socksocket objects, 184 >>> socket.socket = socks.socksocket
|
D | socks.py | 109 module.socket.socket = socksocket 113 class socksocket(socket.socket): class
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/ |
D | socks.py | 112 module.socket.socket = socksocket 116 class socksocket(socket.socket): class 151 return super(socksocket, self).sendall(content, *args)
|
D | __init__.py | 887 self.sock = socks.socksocket(af, socktype, proto) 1009 sock = socks.socksocket(family, socktype, proto)
|