Connecting to Jabber Server Via Proxy in Python (XMPPY) -
trying connect jabber proxy:
> jcon = xmpp.client(server=server, port=port, debug=[]) > con=jcon.connect(server=(connect_server, port), proxy=(127.0.0.1, 80), secure=0,use_srv=true) without proxy connects fine. proxy syntax right? referring 'client.py' in xmppy (https://github.com/normanr/xmpppy/blob/master/xmpp/client.py) might understand syntax.
hoping response soon!
from code linked:
'proxy' argument dictionary mandatory keys 'host' , 'port' (proxy address)
Comments
Post a Comment