getpeername() -> address info Returns the IP address and port number of the destination machine (note: getproxypeername returns the proxy)
(self)
| 300 | return _orgsocket.getpeername(self) |
| 301 | |
| 302 | def getpeername(self): |
| 303 | """getpeername() -> address info |
| 304 | Returns the IP address and port number of the destination |
| 305 | machine (note: getproxypeername returns the proxy) |
| 306 | """ |
| 307 | return self.__proxypeername |
| 308 | |
| 309 | def getproxytype(self): |
| 310 | return self.__proxy[0] |
no outgoing calls
no test coverage detected