Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 921 Bytes

examples.rst

File metadata and controls

23 lines (19 loc) · 921 Bytes

Examples

Packetized TCP Server and Client

The following example shows an example of a protocol on TCP which has a length field and a payload of length bytes. With Suitcase, we only need to declare the basic structure of the message and we get a packer and a stream protocol handler out of the library with very little effort.

Since the protocol definition is declarative, it is easy to see what the structure of packets is. The definition of the protocol is shared between the client and the server. For the server portion, we can use SocketServer from the standard library in order to accept connections. Suitcase has no special support for any networking libraries, so you are free to use it with other network libraries like twisted, gevent, etc. as you please.

.. literalinclude:: ../suitcase/examples/client_server.py
   :language: python
   :lines: 6-