#!/usr/bin/env python
# Simple Server - Chapter 1 -server.py
import socket
host = ''
port = 51423
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR,1)
s.bind((host, port))
s.listen(1)
print "Server is running on port %d; press Ctrl-C to terminate." %port
while 1:
clientsock, clientaddr = s.accept()
clientfile = clientsock.makefile('rw',0)
clientfile.write("Welcome, " + str(clientaddr) + "\n")
clientfile.write("Please enter a string: ")
line = clientfile.readline().strip()
clientfile.write("You entered %d characters. \n" % len(line))
clientfile.close()
clientsock.close()
This entry was posted on Wednesday, February 24th, 2016 at 15:23 and is filed under Python. You can follow any responses to this entry through the RSS 2.0 feed.
Both comments and pings are currently closed.