Example of a UDP client.
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <visp3/core/vpUDPClient.h>
namespace
{
struct DataType {
double double_val;
int int_val;
DataType() : double_val(0.0), int_val(0) {}
DataType(const double dbl, const int i) : double_val(dbl), int_val(i) {}
};
}
int main(int argc, char **argv)
{
#ifdef VISP_HAVE_FUNC_INET_NTOP
try {
std::string servername = std::string("127.0.0.1");
for (int i = 1; i < argc; i++) {
if (std::string(argv[i]) == "--ip" && i + 1 < argc) {
servername = std::string(argv[i + 1]);
}
else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
std::cout << argv[0] << " [--ip <address> (default: 127.0.0.1)] [--help] [-h]"
<< "\n";
return EXIT_SUCCESS;
}
}
unsigned int port = 50037;
DataType data_type(1234.56789, 123450);
char data[sizeof(data_type.double_val) + sizeof(data_type.int_val)];
memcpy(data, &data_type.double_val, sizeof(data_type.double_val));
memcpy(data + sizeof(data_type.double_val), &data_type.int_val, sizeof(data_type.int_val));
std::string msg(data, sizeof(data_type.double_val) + sizeof(data_type.int_val));
if (client.
send(msg) != (int)
sizeof(data_type.double_val) +
sizeof(data_type.int_val))
std::cerr << "Error client.send()!" << std::endl;
data_type.double_val = *reinterpret_cast<const double *>(msg.c_str());
data_type.int_val = *reinterpret_cast<const int *>(msg.c_str() + sizeof(data_type.double_val));
std::cout << "Receive from the server double_val: " << data_type.double_val << " ; int_val: " << data_type.int_val
<< std::endl;
}
while (true) {
std::cout << "Enter the message to send:" << std::endl;
std::string msg = "";
std::getline(std::cin, msg);
if (client.
send(msg) != (int)msg.size())
std::cerr << "Error client.send()!" << std::endl;
std::cout << "Receive from the server: " << msg << std::endl;
}
return EXIT_SUCCESS;
std::cerr <<
"Catch an exception: " << e.
what() << std::endl;
return EXIT_FAILURE;
}
#else
std::cout << "This test doesn't work on win XP where inet_ntop() is not available" << std::endl;
(void)argc;
(void)argv;
return EXIT_SUCCESS;
#endif
}