Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 14:04:28 +01:00
parent 81b91f4139
commit f8c34fa5ee
22732 changed files with 4815320 additions and 2 deletions

View file

@ -0,0 +1,37 @@
#ifndef TGCALLS_REFLECTOR_RELAY_PORT_FACTORY_H
#define TGCALLS_REFLECTOR_RELAY_PORT_FACTORY_H
#include "p2p/client/relay_port_factory_interface.h"
#include "Instance.h"
namespace rtc {
class SocketFactory;
}
namespace tgcalls {
class ReflectorRelayPortFactory : public cricket::RelayPortFactoryInterface {
public:
ReflectorRelayPortFactory(std::vector<RtcServer> servers, bool standaloneReflectorMode, uint32_t standaloneReflectorRoleId, rtc::SocketFactory *underlyingSocketFactory);
~ReflectorRelayPortFactory() override;
// This variant is used for UDP connection to the relay server
// using a already existing shared socket.
virtual std::unique_ptr<cricket::Port> Create(const cricket::CreateRelayPortArgs& args, rtc::AsyncPacketSocket* udp_socket) override;
// This variant is used for the other cases.
virtual std::unique_ptr<cricket::Port> Create(const cricket::CreateRelayPortArgs& args, int min_port, int max_port) override;
private:
std::vector<RtcServer> _servers;
bool _standaloneReflectorMode = false;
uint32_t _standaloneReflectorRoleId = 0;
rtc::SocketFactory *_underlyingSocketFactory = nullptr;
};
} // namespace tgcalls
#endif