On 03/01/2015 11:43, pramod gowda wrote:
server_socket=socket.socket()
server_name='192.168.2.2'
server_port= 80
server_socket.bind((server_name,server_port))
server_socket.listen(1)

I don't do much Python on Windows but do you have the necessary access rights to open a listening socket on port 80? Don't you need to run this with Administrator rights?




--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to