Skip to content
This repository was archived by the owner on Oct 28, 2019. It is now read-only.

First release of Turbo-protocol

Compare
Choose a tag to compare
@baloo1379 baloo1379 released this 23 Nov 23:41
· 10 commits to master since this release

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,