summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0065/proxy.py
AgeCommit message (Collapse)Author
2014-07-17Rename to slixmppFlorent Le Coz
2014-01-26Fixed XEP-0065 SOCKS5 socket closingwaechtjn
SCOKS5 SID were removed multiple times from the _sessions dictionary
2014-01-26Update xep_0065/proxy.pywaechtjn
Removed reference to undefined variable "conn"
2013-03-29Save progress on SI file transferLance Stout
2013-01-23Cleanup and expand XEP-0065 plugin.Lance Stout
2012-11-04Adapted the xep_0065 plugin to be compatible with all kind of others XMPPSandro Munda
client. Sent a 'socks_connected' xmpp event when the streamer is connected.
2012-11-01Avoided to log a debug message error when the socket is normally closed.Sandro Munda
2012-11-01Improved the gitignore files (vim temp file, .pyo file and .baboon directory).Sandro Munda
Automatically pack & unpack data through the socket. Added some comments to the pack method. Handled possible error during the unpacking of data.
2012-06-10Fix XEP-0065 imports and naming for Python3.Lance Stout
2012-06-09Fix Python3 exception handling.Lance Stout
Fixes issue #173
2012-06-07Added the get_socket(sid) method to the xep_0065 plugin to retrieveSandro Munda
the socket of the Proxy thread.
2012-06-07Added the SID in the socks_recv xmpp event in the xep_0065 plugin.Sandro Munda
2012-06-07Renamed Query to Socks5 in the xep_0065.Sandro Munda
Renamed the 'q' plugin_attrib of the Socks5 stanza to 'socks'.
2012-06-07Added a top level field to the xep_0065 class:Sandro Munda
name = 'xep_0065'
2012-06-07Fixed the callback names of the xep_0065:Sandro Munda
In-Band bytestreams -> Socks5 bytestreams
2012-06-07Added the Socksipy module in the thirdparty of SleekXMPP.Sandro Munda
Updated the LICENSE file with the license of the Socksipy module (New-BSD).
2012-06-07Sent a socks_closed when the socket is closed in the xep_0065 plugin.Sandro Munda
2012-06-07Improved the close of the proxy thread (and the socket) in the xep_0065 plugin.Sandro Munda
2012-06-07Changed the description of the xep_0065 pluginSandro Munda
2012-06-07The xep_0065 plugin supports now multiple stream (multiple connectedSandro Munda
sockets). To send data over a stream, we need to pass the SID in order to retrieve the good proxy thread (and so, the good socket).
2012-06-07Renamed the _handle_on_recv to the on_recv method.Sandro Munda
Renamed requester_thread and target_thread to proxy. The send method is now simpler.
2012-06-07Added some comments to the get_network_address methodSandro Munda
2012-06-07Registered stanza plugin in the stanza moduleSandro Munda
2012-06-07Added a partial support of the XEP 0065 - Socks5 BytestreamsSandro Munda