(self, address)
| 242 | |
| 243 | class Socks4aBMConnection(Socks4aConnection, TCPConnection): |
| 244 | def __init__(self, address): |
| 245 | Socks4aConnection.__init__(self, address=address) |
| 246 | TCPConnection.__init__(self, address=address, sock=self.socket) |
| 247 | self.set_state("init") |
| 248 | |
| 249 | def state_proxy_handshake_done(self): |
| 250 | Socks4aConnection.state_proxy_handshake_done(self) |