# socket, bind, listen, accept from socket import * from struct import * import struct from sys import argv skt = socket(AF_INET, SOCK_STREAM); port = 5176 if(len(argv) > 1): port = int(argv[1]) skt.bind(("0.0.0.0", port)) skt.listen(5) while(1): cskt, caddr = skt.accept() cskt.send(struct.pack("