moved seesmic branch to trunk
This commit is contained in:
13
sleekxmpp/xmlstream/testclient.py
Normal file
13
sleekxmpp/xmlstream/testclient.py
Normal file
@@ -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()
|
||||
Reference in New Issue
Block a user