blob: 0869945bbaa127851b88c949a04d7b9b3929347f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "connection.h"
int main()
{
Connection c;
c.open("localhost", 4001 );
c.appendOutput("d");
c.writeOutput();
c.waitForInput( 5, 40, 0 );
c.close();
return 0;
}
|