Modified simple_client

Now it's more descriptive
This commit is contained in:
gerroo
2018-10-28 13:24:41 -08:00
parent 991abb2402
commit 9ded2c3d22
5 changed files with 50 additions and 35 deletions

21
simple_client/server.py Normal file
View File

@ -0,0 +1,21 @@
# server.py
import socket
HOST, PORT = '127.0.0.1', 1400
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)#refer to client.py
s.bind((HOST, PORT))
s.listen(1)#listen for 1 connection
conn, addr = s.accept()#start the actual data flow
print('connected to:', addr)
while 1:
data = conn.recv(1024).decode('ascii')#receive 1024 bytes and decode using ascii
if not data:
break
conn.send((data + ' [ addition by server ]').encode('ascii'))
conn.close()