TCP based ECHO server and client written in Python3
Usage:
$ ./server.py port
For example, to listen on port 12345:
$ ./server.py 12345
Usage:
$ ./client.py host port message [...]
For example, to send the message Hello to port 12345 on localhost:
$ ./client.py localhost 12345 Hello
Another example, to send the message X Y Z to port 23456 on 192.0.2.1:
$ ./client.py 192.0.2.1 23456 X Y Z
MIT