Set up a server that will receive packets from a client and send packets to a client. : Socket Pocket « Network « Python






Set up a server that will receive packets from a client and send packets to a client.

import socket

HOST = "127.0.0.1"
PORT = 5000

mySocket = socket.socket( socket.AF_INET, socket.SOCK_DGRAM )

mySocket.bind( ( HOST, PORT ) )

while 1:
   packet, address = mySocket.recvfrom( 1024 )

   print "Packet received:"
   print "From host:", address[ 0 ]
   print "Host port:", address[ 1 ]
   print "Length:", len( packet )
   print "Containing:"
   print "\t" + packet

   # step 4: echo packet back to client
   print "\nEcho data to client...",
   mySocket.sendto( packet, address )
   print "Packet sent\n"

mySocket.close()


           
       








Related examples in the same category

1.Set up a client that will send packets to a server and receive packets from a server.