##// END OF EJS Templates

File last commit:

r56:57
r57:58
Show More
client.py
7 lines | 174 B | text/x-python | PythonLexer
import socket
dgramSock = socket.socket( socket.AF_INET, socket.SOCK_DGRAM )
dgramSock.sendto( "Hello World\n", ('', 23000) )
print dgramSock.recv( 100 )
dgramSock.close()