rice-eclipse / resfet

Hybrid rocket engine control software for engine tests (coldflow and hotfire), written in C++.
http://eclipse.rice.edu/resfet
GNU General Public License v3.0
1 stars 1 forks source link

TCP Module #1

Closed andrewobler closed 5 years ago

andrewobler commented 5 years ago

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.