Set up a server that will receive packets from a client and send packets to a client : UDP Server : Network PYTHON TUTORIALS


PYTHON TUTORIALS » Network » UDP Server »

 

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.socketsocket.AF_INET, socket.SOCK_DGRAM )

mySocket.bind( ( HOST, PORT ) )

while 1:
   packet, address = mySocket.recvfrom1024 )

   print "From host:", address]
   print "Host port:", address]
   print "Length:", lenpacket )
   print "t" + packet

   mySocket.sendtopacket, address )
   print "Packet sentn"

mySocket.close()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Network
» UDP Server