mediasoup-sys 0.3.2

FFI bindings to C++ libmediasoup-worker
Documentation
#ifndef MS_RTC_UDP_SOCKET_HPP
#define MS_RTC_UDP_SOCKET_HPP

#include "common.hpp"
#include "handles/UdpSocketHandler.hpp"
#include <string>

namespace RTC
{
	class UdpSocket : public ::UdpSocketHandler
	{
	public:
		class Listener
		{
		public:
			virtual ~Listener() = default;

		public:
			virtual void OnUdpSocketPacketReceived(
			  RTC::UdpSocket* socket, const uint8_t* data, size_t len, const struct sockaddr* remoteAddr) = 0;
		};

	public:
		UdpSocket(Listener* listener, std::string& ip);
		UdpSocket(Listener* listener, std::string& ip, uint16_t port);
		~UdpSocket() override;

		/* Pure virtual methods inherited from ::UdpSocketHandler. */
	public:
		void UserOnUdpDatagramReceived(const uint8_t* data, size_t len, const struct sockaddr* addr) override;

	private:
		// Passed by argument.
		Listener* listener{ nullptr };
		bool fixedPort{ false };
	};
} // namespace RTC

#endif