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 socket, syshost = ?textport = ?filename = ?try:s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)except socket.error, e:print "Strange error creating socket: %s" % esys.exit(1)# Try parsing it as a numeric port number.try:port = int(textport)except ValueError:# That didn't work, so it's probably a protocol name.# Look it up instead,try:port = socket.getservbyname(textport, 'tcp')except socket.error, e:print "Couldn't find your port: %s" % esys.exit(1)Explain !

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

Saved successfully!

Ooh no, something went wrong!