mirror of
https://github.com/brendanhaines/RasPi.git
synced 2024-11-10 00:54:40 -07:00
11 lines
140 B
C++
11 lines
140 B
C++
|
/*
|
||
|
* TCPserverExample.cpp
|
||
|
*/
|
||
|
|
||
|
#include "stdio.h"
|
||
|
#include "TCPserver.h"
|
||
|
|
||
|
int main( int argc, char* argv[] )
|
||
|
{
|
||
|
TCPserver serv( 51719 );
|
||
|
}
|