12.07.2015 Views

Socket

Socket

Socket

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Source Codeimport socketprint "Creating socket...",s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)print "done."print "Looking up port number...",port = socket.getservbyname('http', 'tcp')print "done."print "Connecting to remote host on port %d..." % port,s.connect(("www.google.com", port))print "done."print "Connected from", s.getsockname()print "Connected to", s.getpeername()Explain !

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!