This repository was archived by the owner on Oct 28, 2019. It is now read-only.
First release of Turbo-protocol
Source code of first release of our application. This contains code of client, server and protocol as external module for python. Protocol require module bitstring
. Install it by typing pip install bitstring
.
To run server type python server.py [ip_address] [port] [serve_forever]
, where:
ip_address
is IP of your machine,port
is any port from dynamic range,serve_forever
:1
to set server in state of waiting for connections after disconnect, otherwise don't type there anything
To run client type python client.py [ip_address] [port]
, where:
ip_address
is IP of server,port
is any port from dynamic range,