como poder escuchar puerto 80 mediante socket en python

Iniciado por ganondolf, 25 Septiembre 2014, 20:39 PM

0 Miembros y 1 Visitante están viendo este tema.

ganondolf

alguien sabe como poder escuchar el puerto 80 mediante socket con python, ya que de manera comun, no hay resultados.

Código (python) [Seleccionar]
import socket

# create an INET, STREAMing socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# now connect to the web server on port 80 - the normal http port
s.connect(("localhost", 80))
# create an INET, STREAMing socket
serversocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# bind the socket to a public host, and a well-known port
serversocket.bind((socket.gethostname(), 80))
# become a server socket
serversocket.listen(5)
while True:
   # accept connections from outside
   (clientsocket, address) = serversocket.accept()
   # now do something with the clientsocket
   # in this case, we'll pretend this is a threaded server
   ct = client_thread(clientsocket)
   ct.run()