1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-29 20:29:01 +01:00

Small typo fix

This commit is contained in:
Daniil Gentili 2020-03-10 15:01:13 +01:00 committed by GitHub
parent 6d21427c6c
commit 42c4f5b525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,14 +20,14 @@ enum class TgVoipEndpointType {
TcpRelay
};
struct TgVoipEdpointHost {
struct TgVoipEndpointHost {
std::string ipv4;
std::string ipv6;
};
struct TgVoipEndpoint {
int64_t endpointId;
TgVoipEdpointHost host;
TgVoipEndpointHost host;
uint16_t port;
TgVoipEndpointType type;
unsigned char peerTag[16];