Ejemplo n.º 1
0
void UDPMulticastSender::send()
{
	try {
		UDPSocket sock;

		sock.setMulticastTTL(multicastTTL);
		//sock.setBroadcast();

		Sleep(7000); //Wait the Simulation Start

		// Repeatedly send the string to the server
		for (;;) {
 			buildSendMessage();

			sock.sendTo(sendBuffer, bufLen, servAddress, port);
			Sleep(1000./60.); //camera 60 fps
		}
	} catch (SocketException &e) {
		cerr << e.what() << endl;
		exit(1);
	}
}
Ejemplo n.º 2
0
void CClientNet::ProcessMessage(ts_msg& msg, WPARAM wParam, LPARAM lParam, BOOL isremote) {
    Q_UNUSED(wParam);
    Q_UNUSED(lParam);
    if (!isremote)
        buildSendMessage(msg);
}