(self,
family=socket.AF_INET,
socktype=socket.SOCK_STREAM,
proto=0,
fileno=None)
| 41 | |
| 42 | # pylint: disable=unused-argument |
| 43 | def socket(self, |
| 44 | family=socket.AF_INET, |
| 45 | socktype=socket.SOCK_STREAM, |
| 46 | proto=0, |
| 47 | fileno=None): |
| 48 | return self.vsocket |
| 49 | |
| 50 | def getaddrinfo(self, host, port, family=0, socktype=0, proto=0, flags=0): |
| 51 | key = '{}#{}'.format(host, port) |
no outgoing calls
no test coverage detected