-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtcp_echo_server.py
More file actions
40 lines (36 loc) · 1.24 KB
/
Copy pathtcp_echo_server.py
File metadata and controls
40 lines (36 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import socket
import sys
import argparse
host = 'localhost'
data_payload = 2048
backlog = 5
def echo_server(port):
""" A simple echo server """
# Create a TCP socket
sock = socket.socket(socket.AF_INET,
socket.SOCK_STREAM)
# Enable reuse address/port
sock.setsockopt(socket.SOL_SOCKET,
socket.SO_REUSEADDR, 1)
# Bind the socket to the port
print(f"Starting up echo server on {host} port {port}")
sock.bind((host, port))
# Listen to clients, backlog argument specifies the max no.of queued connections
sock.listen(backlog)
while True:
print("Waiting to receive message from client")
client, address = sock.accept()
data = client.recv(data_payload)
if data:
print(f"Data: {data.decode()}")
client.send(data)
print(f"sent {data.decode()} bytes back to {address}")
# end connection
client.close()
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Socket Server Example')
parser.add_argument('--port', action="store",
dest="port", type=int, required=True)
given_args = parser.parse_args()
port = given_args.port
echo_server(port)