This module adds wrappers for all the essential TCP functions: listen, accept, recv, send, and close. The TCP namespace has two fundamental classes (ListenSocket, which is used to listen for and accept incoming connections; and ConnSocket, which represents an active client connection created through a ListenSocket), plus associated exceptions. Should suffice for the command side of RESFET.
This module adds wrappers for all the essential TCP functions: listen, accept, recv, send, and close. The TCP namespace has two fundamental classes (ListenSocket, which is used to listen for and accept incoming connections; and ConnSocket, which represents an active client connection created through a ListenSocket), plus associated exceptions. Should suffice for the command side of RESFET.