Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
#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
|