RasPi/TCP/TCPserverExample.cpp

11 lines
140 B
C++
Raw Normal View History

2015-01-09 13:21:07 -07:00
/*
* TCPserverExample.cpp
*/
#include "stdio.h"
#include "TCPserver.h"
int main( int argc, char* argv[] )
{
TCPserver serv( 51719 );
}