Example #1
0
void CallThread::run() {
	cout << "starting call thread\n";
	try {
		_terminal->connect(_hostAddress.c_str(), _remotePort);
	} catch(...) {
		cerr << "EXCEPTION[callThread]: unable to perform connection!\n";
		// TODO
	}
	cout << "finishing call thread\n";
}