aboutsummaryrefslogtreecommitdiff
path: root/src/tests/teltest/main.cpp
blob: 5d3ec269d7dfebdd74acc66803020e2f475342a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "connectionmanager.h"
#include "telnetmonitor.h"

int main()
{
	printf("Starting server...\n");

	ConnectionManager srv;
	TelnetMonitor telnet;

	srv.setConnectionMonitor( &telnet );

	srv.startServer( 4001 );

	for(;;)
	{
		srv.scanConnections( 5000, false );
	}
	
	return 0;
}