add example tcp/udp communication using socket

This commit is contained in:
2015-06-02 21:10:28 +02:00
commit 12b5878f54
6 changed files with 177 additions and 0 deletions

23
socket/UdpClient.py Normal file
View File

@@ -0,0 +1,23 @@
import socket
import sys
# Create a UDP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
server_address = ('localhost', 10000)
message = 'This is the message. It will be repeated.'
try:
# Send data
print >>sys.stderr, 'sending "%s"' % message
sent = sock.sendto(message, server_address)
# Receive response
print >>sys.stderr, 'waiting to receive'
data, server = sock.recvfrom(4096)
print >>sys.stderr, 'received "%s"' % data
finally:
print >>sys.stderr, 'closing socket'
sock.close()