34#ifndef _vpUDPClient_h_
35#define _vpUDPClient_h_
37#include <visp3/core/vpConfig.h>
40#ifdef VISP_HAVE_FUNC_INET_NTOP
42#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)))
43#include <netinet/in.h>
44#include <sys/socket.h>
50#include <visp3/core/vpException.h>
52#define VP_MAX_UDP_PAYLOAD 508
170 vpUDPClient(
const std::string &hostname,
int port);
175 void init(
const std::string &hostname,
int port);
177 int receive(std::string &msg,
int timeoutMs = 0);
178 int receive(
void *msg,
size_t len,
int timeoutMs = 0);
179 int send(
const std::string &msg);
180 int send(
const void *msg,
size_t len);
187 char m_buf[VP_MAX_UDP_PAYLOAD];
188 struct sockaddr_in m_serverAddress;
190#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)))
191 int m_socketFileDescriptor;
193 SOCKET m_socketFileDescriptor;
int receive(std::string &msg, int timeoutMs=0)
void init(const std::string &hostname, int port)
int send(const std::string &msg)