| Issue 122: | Allow tcp bind from distinct IP addresses | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Posted by hzf9vv at 2007-03-16 13:03:58
in src/legacy/icqt.py, change this line:
return c.connectTCP(server, port)
to this:
return c.connectTCP(server, port, timeout=30,
bindAddress=(config.mainServer,0))
This allows multiple instances of the transport to bind to distinct IP
addresses, thus mitigating the risk of having so many connections to the ICQ
servers from the same IP address.
|