Attachment 'tcp_receive.py'

Download

   1 #!/usr/bin/env python
   2 import socket
   3 
   4 print "I am: ",socket.gethostbyname(socket.gethostname())
   5 
   6 sock=socket.socket()	# default is to make a normal internet socket
   7 sock.bind(("",40000))	# Nothing magic about 40000
   8 sock.listen(3)		# Wait for 'connect' requests
   9 
  10 while True:
  11 	sock2=sock.accept()		# accept the connection (new socket)
  12 	msg=sock2[0].recv(1024)		# receive up to 1024 bytes
  13 	if msg=="exit" or msg=="quit": break
  14 	print msg
  15 
  16 print "The remote user told me to exit!"
  17 sock.close()

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.

You are not allowed to attach a file to this page.