RoboidControl-cpp/UdpPosix.h
Pascal Serrarens f591d34d97 Posix support
2025-01-11 11:35:28 +01:00

17 lines
325 B
C++

#pragma once
#include "Participant.h"
namespace Passer {
namespace Control {
class UdpPosix : public Participant {
public:
void Setup(int localPort, const char *remoteIpAddress, int remotePort);
void Receive();
bool Send(IMessage *msg);
bool Publish(IMessage *msg);
};
} // namespace Control
} // namespace Passer