My C++ code have below lines
const char* address = "localhost:5000";
if( argc > 1 )
address = argv[ 1 ];
receiving_udpsocket socketrev( address );
sockstream connection( socketrev );
getline(connection, line);
But, My code stop at getline.
Also, I set the BCI2000 by using emotiv, ARsignalProcessing, CursorTask, BCI2000Command.
And I put localhost:5000 to my ConnectorOutputAddress.
I guess this error occurs Because of the absence of AppConnector.
Unfortunately, I don't know exactly what is the AppConnector.
If I have to download the AppConnector?
please, give me some advice.
