RasPi/TCP/TCPserverExample.cpp
2015-01-09 13:21:07 -07:00

11 lines
140 B
C++

/*
* TCPserverExample.cpp
*/
#include "stdio.h"
#include "TCPserver.h"
int main( int argc, char* argv[] )
{
TCPserver serv( 51719 );
}