mirror of
https://github.com/danog/tgvoip-test-suite.git
synced 2024-12-02 09:37:56 +01:00
Support updated libtgvoip
Enable TGVOIP_LOG_VERBOSITY=5 by default
This commit is contained in:
parent
c471de22ab
commit
fc802fabfe
BIN
bin/tgvoipcall
BIN
bin/tgvoipcall
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -18,13 +18,13 @@ ENDIF()
|
|||||||
|
|
||||||
ExternalProject_Add(
|
ExternalProject_Add(
|
||||||
libtgvoip
|
libtgvoip
|
||||||
URL https://github.com/telegramdesktop/libtgvoip/archive/88b47b6.tar.gz
|
URL https://github.com/telegramdesktop/libtgvoip/archive/c5651ff.tar.gz
|
||||||
#Unstable
|
#Unstable
|
||||||
#URL https://github.com/telegramdesktop/libtgvoip/archive/f775311.tar.gz
|
#URL https://github.com/telegramdesktop/libtgvoip/archive/da27199.tar.gz
|
||||||
PREFIX libtgvoip
|
PREFIX libtgvoip
|
||||||
BUILD_IN_SOURCE 1
|
BUILD_IN_SOURCE 1
|
||||||
#CONFIGURE_COMMAND ./configure CPPFLAGS=-DTGVOIP_LOG_VERBOSITY=5 --enable-audio-callback --without-pulse --without-alsa
|
CONFIGURE_COMMAND ./configure CPPFLAGS=-DTGVOIP_LOG_VERBOSITY=5 --enable-audio-callback --without-pulse --without-alsa
|
||||||
CONFIGURE_COMMAND ./configure CPPFLAGS=-DTGVOIP_LOG_VERBOSITY=0 --enable-audio-callback --without-pulse --without-alsa
|
#CONFIGURE_COMMAND ./configure CPPFLAGS=-DTGVOIP_LOG_VERBOSITY=0 --enable-audio-callback --without-pulse --without-alsa
|
||||||
BUILD_COMMAND make
|
BUILD_COMMAND make
|
||||||
INSTALL_COMMAND ""
|
INSTALL_COMMAND ""
|
||||||
)
|
)
|
||||||
|
@ -141,7 +141,11 @@ void init(int argc, char **argv) {
|
|||||||
char buf[16];
|
char buf[16];
|
||||||
if (sscanf(argv[1], "%15[0-9.]:%hu", buf, &ep.port) != 2)
|
if (sscanf(argv[1], "%15[0-9.]:%hu", buf, &ep.port) != 2)
|
||||||
throw std::invalid_argument(std::string("Incorrect reflector address: ") + argv[1]);
|
throw std::invalid_argument(std::string("Incorrect reflector address: ") + argv[1]);
|
||||||
ep.host = buf;
|
TgVoipEdpointHost host = {
|
||||||
|
.ipv4 = std::string(buf),
|
||||||
|
.ipv6 = std::string(),
|
||||||
|
};
|
||||||
|
ep.host = host;
|
||||||
|
|
||||||
int len;
|
int len;
|
||||||
sscanf(argv[2], "%*32[0-9a-f]%n", &len);
|
sscanf(argv[2], "%*32[0-9a-f]%n", &len);
|
||||||
|
Loading…
Reference in New Issue
Block a user