36 #ifndef _vpUDPClient_h_
37 #define _vpUDPClient_h_
39 #include <visp3/core/vpConfig.h>
42 #ifdef VISP_HAVE_FUNC_INET_NTOP
44 #if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
45 # include <netinet/in.h>
46 # include <sys/socket.h>
47 # include <sys/types.h>
49 # include <winsock2.h>
52 #include <visp3/core/vpException.h>
54 #define VP_MAX_UDP_PAYLOAD 508
171 vpUDPClient(
const std::string &hostname,
const int port);
174 int receive(std::string &msg,
const int timeoutMs = 0);
175 int send(
const std::string &msg);
178 char m_buf[VP_MAX_UDP_PAYLOAD];
179 struct sockaddr_in m_serverAddress;
181 #if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
182 int m_socketFileDescriptor;
184 SOCKET m_socketFileDescriptor;
188 void init(
const std::string &hostname,
const int port);