mirror of
https://github.com/danog/libtgvoip.git
synced 2024-11-27 04:34:42 +01:00
bfde1a4be3
Moved public API classes into namespace tgvoip (CVoIPController -> tgvoip::VoIPController, CVoIPServerConfig -> tgvoip::ServerConfig) Endpoint is now a class instead of a struct; also, IP addresses are now wrapped into objects instead of relying on in_addr and in6_addr Full Windows port (Win32 threading + Winsock + WaveOut/WaveIn) Added support for ALSA audio I/O on Linux (closes #2) Abstracted away low-level networking to make it more portable Minor bugfixes
77 lines
1.7 KiB
C++
77 lines
1.7 KiB
C++
//
|
|
// Created by Grishka on 29.03.17.
|
|
//
|
|
|
|
#ifndef LIBTGVOIP_NETWORKSOCKET_H
|
|
#define LIBTGVOIP_NETWORKSOCKET_H
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
namespace tgvoip {
|
|
class NetworkAddress{
|
|
public:
|
|
virtual std::string ToString()=0;
|
|
//virtual sockaddr& ToSockAddr(uint16_t port)=0;
|
|
bool operator==(const NetworkAddress& other);
|
|
bool operator!=(const NetworkAddress& other);
|
|
};
|
|
|
|
class IPv4Address : public NetworkAddress{
|
|
public:
|
|
IPv4Address(std::string addr);
|
|
IPv4Address(uint32_t addr);
|
|
virtual std::string ToString();
|
|
//virtual sockaddr& ToSockAddr(uint16_t port);
|
|
uint32_t GetAddress();
|
|
|
|
private:
|
|
uint32_t address;
|
|
};
|
|
|
|
class IPv6Address : public NetworkAddress{
|
|
public:
|
|
IPv6Address(std::string addr);
|
|
IPv6Address(uint8_t addr[16]);
|
|
virtual std::string ToString();
|
|
//virtual sockaddr& ToSockAddr(uint16_t port);
|
|
const uint8_t* GetAddress();
|
|
private:
|
|
uint8_t address[16];
|
|
};
|
|
|
|
struct NetworkPacket{
|
|
unsigned char* data;
|
|
size_t length;
|
|
NetworkAddress* address;
|
|
uint16_t port;
|
|
};
|
|
typedef struct NetworkPacket NetworkPacket;
|
|
|
|
class NetworkSocket{
|
|
public:
|
|
NetworkSocket();
|
|
virtual ~NetworkSocket();
|
|
virtual void Send(NetworkPacket* packet)=0;
|
|
virtual void Receive(NetworkPacket* packet)=0;
|
|
virtual void Open()=0;
|
|
virtual void Close()=0;
|
|
virtual uint16_t GetLocalPort()=0;
|
|
virtual std::string GetLocalInterfaceInfo(IPv4Address* inet4addr, IPv6Address* inet6addr);
|
|
virtual void OnActiveInterfaceChanged()=0;
|
|
bool IsFailed();
|
|
|
|
static NetworkSocket* Create();
|
|
|
|
protected:
|
|
virtual uint16_t GenerateLocalPort();
|
|
virtual void SetMaxPriority();
|
|
double ipv6Timeout;
|
|
unsigned char nat64Prefix[12];
|
|
bool failed;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //LIBTGVOIP_NETWORKSOCKET_H
|