1
0
mirror of https://github.com/danog/libtgvoip.git synced 2024-11-30 04:39:03 +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 TcpRelay
}; };
struct TgVoipEdpointHost { struct TgVoipEndpointHost {
std::string ipv4; std::string ipv4;
std::string ipv6; std::string ipv6;
}; };
struct TgVoipEndpoint { struct TgVoipEndpoint {
int64_t endpointId; int64_t endpointId;
TgVoipEdpointHost host; TgVoipEndpointHost host;
uint16_t port; uint16_t port;
TgVoipEndpointType type; TgVoipEndpointType type;
unsigned char peerTag[16]; unsigned char peerTag[16];