summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/testclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp/xmlstream/testclient.py')
-rw-r--r--sleekxmpp/xmlstream/testclient.py13
1 files changed, 13 insertions, 0 deletions
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("<stream>")
+#s.flush()
+s.send("<test/>")
+s.send("<test/>")
+s.send("<test/>")
+s.send("</stream>")
+#s.flush()
+s.close()