From 96b103b27599e5af247c1e3b95d62c80c1e32a63 Mon Sep 17 00:00:00 2001 From: Nathan Fritz Date: Wed, 3 Jun 2009 22:56:51 +0000 Subject: moved seesmic branch to trunk --- sleekxmpp/xmlstream/testclient.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sleekxmpp/xmlstream/testclient.py (limited to 'sleekxmpp/xmlstream/testclient.py') diff --git a/sleekxmpp/xmlstream/testclient.py b/sleekxmpp/xmlstream/testclient.py new file mode 100644 index 00000000..50eb6c50 --- /dev/null +++ b/sleekxmpp/xmlstream/testclient.py @@ -0,0 +1,13 @@ +import socket +import time + +s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) +s.connect(('localhost', 5228)) +s.send("") +#s.flush() +s.send("") +s.send("") +s.send("") +s.send("") +#s.flush() +s.close() -- cgit v1.2.3