Example of a TCP client/server.
#include <iostream>
#include <visp3/core/vpServer.h>
int main()
{
#ifdef VISP_HAVE_FUNC_INET_NTOP
try {
int port = 35000;
bool run = true;
int val;
while (run) {
if (serv.
receive(&val) !=
sizeof(int))
std::cout << "Error while receiving" << std::endl;
else
std::cout << "Received : " << val << std::endl;
val = val + 1;
if (serv.
send(&val) !=
sizeof(int))
std::cout << "Error while sending" << std::endl;
else
std::cout << "Sending : " << val << std::endl;
}
}
return 0;
std::cout << "Catch an exception: " << e << std::endl;
return 1;
}
#else
std::cout << "This test doesn't work on win XP where inet_ntop() is not available" << std::endl;
return EXIT_SUCCESS;
#endif
}