This repository was archived by the owner on Oct 28, 2019. It is now read-only.
Releases: baloo1379/turbo-protocol
Releases · baloo1379/turbo-protocol
Turbo-protocol 2
Second release of our application. This contains several improvements in protocol itself, like dynamic length of every single variable.
Protocol require module bitstring
by Scott Griffiths. 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 new connections after last user disconnection, otherwise don't type here 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,
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,