diff options
Diffstat (limited to 'net-im/tdlib')
-rw-r--r-- | net-im/tdlib/Makefile | 32 | ||||
-rw-r--r-- | net-im/tdlib/distinfo | 6 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-CMakeLists.txt | 106 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-sqlite_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdactor_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tddb_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tde2e_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdnet_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdtl_CMakeLists.txt | 9 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdutils_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-test_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/pkg-plist | 701 |
13 files changed, 909 insertions, 33 deletions
diff --git a/net-im/tdlib/Makefile b/net-im/tdlib/Makefile index d338e8a95edc..929652128ce0 100644 --- a/net-im/tdlib/Makefile +++ b/net-im/tdlib/Makefile @@ -1,6 +1,7 @@ PORTNAME= tdlib DISTVERSIONPREFIX= v -DISTVERSION= 1.8.0 +DISTVERSION= 1.8.48 +PORTREVISION= 4 CATEGORIES= net-im devel MAINTAINER= yuri@FreeBSD.org @@ -9,18 +10,31 @@ WWW= https://github.com/tdlib/td LICENSE= BSL -USES= cmake:testing compiler:c++14-lang gperf ssl +USES= cmake:testing compiler:c++14-lang gperf readline ssl + +CONFLICTS_INSTALL= tde2e USE_GITHUB= yes GH_PROJECT= td +GH_TAGNAME= b8b08b0 # hash corresponding to 1.8.48 + +CMAKE_ON= TD_INSTALL_SHARED_LIBRARIES TD_INSTALL_STATIC_LIBRARIES \ + BUILD_SHARED_LIBS +CMAKE_OFF+= TD_E2E_ONLY # supposed to install tde2e but it fails to install headers +CMAKE_OFF+= BUILD_TESTING FREEBSD_BUILD_BENCHMARKS + +PLIST_SUB+= LIBVERSION=${PORTVERSION} -CMAKE_ON= BUILD_SHARED_LIBS -CMAKE_OFF= BUILD_TESTING FREEBSD_BUILD_BENCHMARKS +post-patch: + @${REINPLACE_CMD} -e 's|%%COMMIT%%|${GH_TAGNAME}|g' \ + ${WRKSRC}/CMake/GetGitRevisionDescription.cmake -do-test: - @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DFREEBSD_BUILD_TESTING:BOOL=ON ${CMAKE_SOURCE_PATH} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test +post-install: # see https://github.com/tdlib/td/issues/3328 + @cd ${WRKSRC}/td && \ + ${COPYTREE_SHARE} telegram ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" + @cd ${WRKSRC}/tdutils/td && \ + ${COPYTREE_SHARE} utils ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" + @cd ${WRKSRC}/tde2e/td && \ + ${COPYTREE_SHARE} e2e ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" .include <bsd.port.mk> diff --git a/net-im/tdlib/distinfo b/net-im/tdlib/distinfo index c9fe9c1adc58..58f4d58e16cf 100644 --- a/net-im/tdlib/distinfo +++ b/net-im/tdlib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1641141093 -SHA256 (tdlib-td-v1.8.0_GH0.tar.gz) = 30d560205fe82fb811cd57a8fcbc7ac853a5b6195e9cb9e6ff142f5e2d8be217 -SIZE (tdlib-td-v1.8.0_GH0.tar.gz) = 4527846 +TIMESTAMP = 1746135980 +SHA256 (tdlib-td-v1.8.48-b8b08b0_GH0.tar.gz) = 7e9885decba915c15e3297b824e2320ddd3d95fcca4ed47eb0ffa6c91f159548 +SIZE (tdlib-td-v1.8.48-b8b08b0_GH0.tar.gz) = 5465084 diff --git a/net-im/tdlib/files/patch-CMakeLists.txt b/net-im/tdlib/files/patch-CMakeLists.txt index fa81fa16eb1a..989c6940d4d3 100644 --- a/net-im/tdlib/files/patch-CMakeLists.txt +++ b/net-im/tdlib/files/patch-CMakeLists.txt @@ -1,17 +1,103 @@ -- make tests and benchmarks conditional on special cmake variables, see https://github.com/tdlib/td/issues/1583 - ---- CMakeLists.txt.orig 2021-05-20 23:05:03 UTC +--- CMakeLists.txt.orig 2025-04-30 22:25:21 UTC +++ CMakeLists.txt -@@ -189,9 +189,11 @@ add_subdirectory(sqlite) - - add_subdirectory(tddb) - -+if (BUILD_TESTING) - add_subdirectory(test) -+endif() +@@ -213,7 +213,7 @@ add_subdirectory(tde2e) + set(TDE2E_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) + add_subdirectory(tde2e) -if (NOT CMAKE_CROSSCOMPILING) +if (FREEBSD_BUILD_BENCHMARKS AND NOT CMAKE_CROSSCOMPILING) add_subdirectory(benchmark) endif() +@@ -1148,7 +1148,7 @@ set(MEMPROF_STAT_SOURCE + # LIBRARIES + + # memprof - simple library for memory usage profiling +-add_library(memprof STATIC ${MEMPROF_SOURCE}) ++add_library(memprof ${MEMPROF_SOURCE}) + target_include_directories(memprof PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(memprof PRIVATE tdutils) + if (MEMPROF) +@@ -1162,12 +1162,12 @@ endif() + endif() + endif() + +-add_library(memprof_stat EXCLUDE_FROM_ALL STATIC ${MEMPROF_STAT_SOURCE}) ++add_library(memprof_stat EXCLUDE_FROM_ALL ${MEMPROF_STAT_SOURCE}) + target_include_directories(memprof_stat PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(memprof_stat PRIVATE tdutils) + + +-add_library(tdapi STATIC ${TL_TD_API_SOURCE}) ++add_library(tdapi ${TL_TD_API_SOURCE}) + target_include_directories(tdapi PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> INTERFACE $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdapi PRIVATE tdutils) + +@@ -1184,7 +1184,7 @@ endif() + add_dependencies(tdapi tl_generate_common) + endif() + +-add_library(tdmtproto STATIC ${TD_MTPROTO_SOURCE}) ++add_library(tdmtproto ${TD_MTPROTO_SOURCE}) + target_include_directories(tdmtproto PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_include_directories(tdmtproto SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR}) + target_link_libraries(tdmtproto PUBLIC tdactor tdnet tdutils PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}) +@@ -1201,11 +1201,11 @@ if (MSVC AND TD_ENABLE_LTO) + + # tdcore - internal TDLib interface + if (MSVC AND TD_ENABLE_LTO) +- add_library(tdcore_part1 STATIC ${TDLIB_SOURCE_PART1}) ++ add_library(tdcore_part1 ${TDLIB_SOURCE_PART1}) + target_include_directories(tdcore_part1 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore_part1 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +- add_library(tdcore_part2 STATIC ${TDLIB_SOURCE_PART2}) ++ add_library(tdcore_part2 ${TDLIB_SOURCE_PART2}) + target_include_directories(tdcore_part2 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore_part2 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +@@ -1214,7 +1214,7 @@ else() + + set(TD_CORE_PART_TARGETS tdcore_part1 tdcore_part2) + else() +- add_library(tdcore STATIC ${TDLIB_SOURCE}) ++ add_library(tdcore ${TDLIB_SOURCE}) + target_include_directories(tdcore PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +@@ -1231,7 +1231,7 @@ endif() + endif() + endif() + +-add_library(tdclient STATIC td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h) ++add_library(tdclient td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h) + target_include_directories(tdclient PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + ) +@@ -1263,7 +1263,7 @@ endif() + endif() + + # tdc - TDLib interface in pure C +-add_library(tdc STATIC EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h) ++add_library(tdc EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h) + target_include_directories(tdc PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) +@@ -1272,7 +1272,7 @@ endif() + add_dependencies(tdc tl_generate_c) + endif() + +-add_library(tdjson_private STATIC ${TL_TD_JSON_SOURCE} td/telegram/ClientJson.cpp td/telegram/ClientJson.h) ++add_library(tdjson_private ${TL_TD_JSON_SOURCE} td/telegram/ClientJson.cpp td/telegram/ClientJson.h) + target_include_directories(tdjson_private PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) +@@ -1299,7 +1299,7 @@ endif() + set_target_properties(tdjson PROPERTIES LINK_FLAGS "-Wl,-exported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/tdclientjson_export_list") + endif() + +-add_library(tdjson_static STATIC ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) ++add_library(tdjson_static ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) + target_link_libraries(tdjson_static PRIVATE tdjson_private) + target_compile_definitions(tdjson_static PUBLIC TDJSON_STATIC_DEFINE) + target_include_directories(tdjson_static PUBLIC diff --git a/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake b/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake new file mode 100644 index 000000000000..f35b6961cc68 --- /dev/null +++ b/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake @@ -0,0 +1,11 @@ +--- CMake/GetGitRevisionDescription.cmake.orig 2025-04-30 22:25:21 UTC ++++ CMake/GetGitRevisionDescription.cmake +@@ -67,7 +67,7 @@ function(get_git_head_revision _refspecvar _hashvar) + endif() + if (GIT_DIR STREQUAL "") + set(${_refspecvar} "GITDIR-NOTFOUND" PARENT_SCOPE) +- set(${_hashvar} "GITDIR-NOTFOUND" PARENT_SCOPE) ++ set(${_hashvar} "b8b08b0" PARENT_SCOPE) + return() + endif() + diff --git a/net-im/tdlib/files/patch-sqlite_CMakeLists.txt b/net-im/tdlib/files/patch-sqlite_CMakeLists.txt new file mode 100644 index 000000000000..d6db21f5bb35 --- /dev/null +++ b/net-im/tdlib/files/patch-sqlite_CMakeLists.txt @@ -0,0 +1,11 @@ +--- sqlite/CMakeLists.txt.orig 2025-05-09 16:44:31 UTC ++++ sqlite/CMakeLists.txt +@@ -23,7 +23,7 @@ set(SQLITE_SOURCE + + # all SQLite functions are moved to namespace tdsqlite3 by `sed -Ebi 's/sqlite3([^.]|$)/td&/g' *` + +-add_library(tdsqlite STATIC ${SQLITE_SOURCE}) ++add_library(tdsqlite ${SQLITE_SOURCE}) + target_include_directories(tdsqlite PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(tdsqlite SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR}) + target_link_libraries(tdsqlite PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}) diff --git a/net-im/tdlib/files/patch-tdactor_CMakeLists.txt b/net-im/tdlib/files/patch-tdactor_CMakeLists.txt new file mode 100644 index 000000000000..7894a1a863c2 --- /dev/null +++ b/net-im/tdlib/files/patch-tdactor_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tdactor/CMakeLists.txt.orig 2025-05-09 16:50:48 UTC ++++ tdactor/CMakeLists.txt +@@ -44,7 +44,7 @@ set(TDACTOR_TEST_SOURCE + PARENT_SCOPE + ) + +-add_library(tdactor STATIC ${TDACTOR_SOURCE}) ++add_library(tdactor ${TDACTOR_SOURCE}) + target_include_directories(tdactor PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(tdactor PUBLIC tdutils) + diff --git a/net-im/tdlib/files/patch-tddb_CMakeLists.txt b/net-im/tdlib/files/patch-tddb_CMakeLists.txt new file mode 100644 index 000000000000..e42b54861319 --- /dev/null +++ b/net-im/tdlib/files/patch-tddb_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tddb/CMakeLists.txt.orig 2025-05-09 16:50:17 UTC ++++ tddb/CMakeLists.txt +@@ -48,7 +48,7 @@ set(TDDB_SOURCE + td/db/detail/RawSqliteDb.h + ) + +-add_library(tddb STATIC ${TDDB_SOURCE}) ++add_library(tddb ${TDDB_SOURCE}) + target_include_directories(tddb PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(tddb PUBLIC tdactor tdutils PRIVATE tdsqlite) + diff --git a/net-im/tdlib/files/patch-tde2e_CMakeLists.txt b/net-im/tdlib/files/patch-tde2e_CMakeLists.txt new file mode 100644 index 000000000000..7a9d1238ff0a --- /dev/null +++ b/net-im/tdlib/files/patch-tde2e_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tde2e/CMakeLists.txt.orig 2025-05-09 16:51:07 UTC ++++ tde2e/CMakeLists.txt +@@ -62,7 +62,7 @@ set(TDE2E_TEST_SOURCE "${TDE2E_TEST_SOURCE}" PARENT_SC + + set(TDE2E_TEST_SOURCE "${TDE2E_TEST_SOURCE}" PARENT_SCOPE) + +-add_library(tde2e STATIC ${TDE2E_SOURCE}) ++add_library(tde2e ${TDE2E_SOURCE}) + if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tde2e tl_generate_common) + endif() diff --git a/net-im/tdlib/files/patch-tdnet_CMakeLists.txt b/net-im/tdlib/files/patch-tdnet_CMakeLists.txt new file mode 100644 index 000000000000..3ff722cf12f0 --- /dev/null +++ b/net-im/tdlib/files/patch-tdnet_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tdnet/CMakeLists.txt.orig 2025-05-09 16:51:47 UTC ++++ tdnet/CMakeLists.txt +@@ -60,7 +60,7 @@ endif() + set_source_files_properties(td/net/DarwinHttp.mm PROPERTIES COMPILE_FLAGS -fobjc-arc) + endif() + +-add_library(tdnet STATIC ${TDNET_SOURCE}) ++add_library(tdnet ${TDNET_SOURCE}) + target_include_directories(tdnet PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(tdnet SYSTEM PRIVATE $<BUILD_INTERFACE:${OPENSSL_INCLUDE_DIR}>) + target_link_libraries(tdnet PUBLIC tdutils tdactor) diff --git a/net-im/tdlib/files/patch-tdtl_CMakeLists.txt b/net-im/tdlib/files/patch-tdtl_CMakeLists.txt new file mode 100644 index 000000000000..bd6135a15438 --- /dev/null +++ b/net-im/tdlib/files/patch-tdtl_CMakeLists.txt @@ -0,0 +1,9 @@ +--- tdtl/CMakeLists.txt.orig 2025-05-09 16:52:10 UTC ++++ tdtl/CMakeLists.txt +@@ -24,5 +24,5 @@ set(TDTL_SOURCE + td/tl/tl_writer.h + ) + +-add_library(tdtl STATIC ${TDTL_SOURCE}) ++add_library(tdtl ${TDTL_SOURCE}) + target_include_directories(tdtl PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) diff --git a/net-im/tdlib/files/patch-tdutils_CMakeLists.txt b/net-im/tdlib/files/patch-tdutils_CMakeLists.txt new file mode 100644 index 000000000000..60e62535b6d3 --- /dev/null +++ b/net-im/tdlib/files/patch-tdutils_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tdutils/CMakeLists.txt.orig 2025-05-09 16:51:24 UTC ++++ tdutils/CMakeLists.txt +@@ -351,7 +351,7 @@ set(TDUTILS_TEST_SOURCE + PARENT_SCOPE + ) + +-add_library(tdutils STATIC ${TDUTILS_SOURCE}) ++add_library(tdutils ${TDUTILS_SOURCE}) + + if (NOT CMAKE_CROSSCOMPILING AND TDUTILS_MIME_TYPE) + add_dependencies(tdutils tdmime_auto) diff --git a/net-im/tdlib/files/patch-test_CMakeLists.txt b/net-im/tdlib/files/patch-test_CMakeLists.txt new file mode 100644 index 000000000000..bc5db0338a3e --- /dev/null +++ b/net-im/tdlib/files/patch-test_CMakeLists.txt @@ -0,0 +1,11 @@ +--- test/CMakeLists.txt.orig 2025-05-09 17:43:17 UTC ++++ test/CMakeLists.txt +@@ -61,7 +61,7 @@ if (NOT CMAKE_CROSSCOMPILING OR EMSCRIPTEN) + target_include_directories(run_all_tests PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(test-tdutils PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(test-tdutils PRIVATE tdutils) +- target_link_libraries(run_all_tests PRIVATE tdcore tdclient) ++ target_link_libraries(run_all_tests PRIVATE tdcore tdclient tdmtproto) + target_link_libraries(test-online PRIVATE tdcore tdjson_private tdclient tdutils tdactor) + + if (CLANG) diff --git a/net-im/tdlib/pkg-plist b/net-im/tdlib/pkg-plist index 1bbd84ed34c4..bdf48af6106a 100644 --- a/net-im/tdlib/pkg-plist +++ b/net-im/tdlib/pkg-plist @@ -1,37 +1,716 @@ +include/td/e2e/BitString.h +include/td/e2e/Blockchain.h +include/td/e2e/Call.h +include/td/e2e/CheckSharedSecret.h +include/td/e2e/Container.h +include/td/e2e/DecryptedKey.h +include/td/e2e/EncryptedKey.h +include/td/e2e/EncryptedStorage.h +include/td/e2e/Keys.h +include/td/e2e/MessageEncryption.h +include/td/e2e/Mnemonic.h +include/td/e2e/QRHandshake.h +include/td/e2e/TestBlockchain.h +include/td/e2e/Trie.h +include/td/e2e/bip39.h +include/td/e2e/e2e_api.h +include/td/e2e/e2e_errors.h +include/td/e2e/utils.h +include/td/telegram/AccentColorId.h +include/td/telegram/AccessRights.h +include/td/telegram/AccountManager.h +include/td/telegram/AffectedHistory.h +include/td/telegram/AffiliateType.h +include/td/telegram/AlarmManager.h +include/td/telegram/AnimationsManager.h +include/td/telegram/AnimationsManager.hpp +include/td/telegram/Application.h +include/td/telegram/AttachMenuManager.h +include/td/telegram/AudiosManager.h +include/td/telegram/AudiosManager.hpp +include/td/telegram/AuthManager.h +include/td/telegram/AuthManager.hpp +include/td/telegram/AutoDownloadSettings.h +include/td/telegram/AutosaveManager.h +include/td/telegram/BackgroundId.h +include/td/telegram/BackgroundInfo.h +include/td/telegram/BackgroundInfo.hpp +include/td/telegram/BackgroundManager.h +include/td/telegram/BackgroundType.h +include/td/telegram/BackgroundType.hpp +include/td/telegram/BaseTheme.h +include/td/telegram/Birthdate.h +include/td/telegram/Birthdate.hpp +include/td/telegram/BlockListId.h +include/td/telegram/BoostManager.h +include/td/telegram/BotCommand.h +include/td/telegram/BotCommandScope.h +include/td/telegram/BotInfoManager.h +include/td/telegram/BotMenuButton.h +include/td/telegram/BotQueries.h +include/td/telegram/BotRecommendationManager.h +include/td/telegram/BotVerification.h +include/td/telegram/BotVerification.hpp +include/td/telegram/BotVerifierSettings.h +include/td/telegram/BotVerifierSettings.hpp +include/td/telegram/BusinessAwayMessage.h +include/td/telegram/BusinessAwayMessage.hpp +include/td/telegram/BusinessAwayMessageSchedule.h +include/td/telegram/BusinessAwayMessageSchedule.hpp +include/td/telegram/BusinessBotManageBar.h +include/td/telegram/BusinessBotRights.h +include/td/telegram/BusinessBotRights.hpp +include/td/telegram/BusinessChatLink.h +include/td/telegram/BusinessConnectedBot.h +include/td/telegram/BusinessConnectedBot.hpp +include/td/telegram/BusinessConnectionId.h +include/td/telegram/BusinessConnectionManager.h +include/td/telegram/BusinessGreetingMessage.h +include/td/telegram/BusinessGreetingMessage.hpp +include/td/telegram/BusinessInfo.h +include/td/telegram/BusinessInfo.hpp +include/td/telegram/BusinessIntro.h +include/td/telegram/BusinessIntro.hpp +include/td/telegram/BusinessManager.h +include/td/telegram/BusinessRecipients.h +include/td/telegram/BusinessRecipients.hpp +include/td/telegram/BusinessWorkHours.h +include/td/telegram/BusinessWorkHours.hpp +include/td/telegram/CallActor.h +include/td/telegram/CallDiscardReason.h +include/td/telegram/CallId.h +include/td/telegram/CallManager.h +include/td/telegram/CallbackQueriesManager.h +include/td/telegram/ChainId.h +include/td/telegram/ChannelId.h +include/td/telegram/ChannelParticipantFilter.h +include/td/telegram/ChannelRecommendationManager.h +include/td/telegram/ChannelType.h +include/td/telegram/ChatId.h +include/td/telegram/ChatManager.h +include/td/telegram/ChatReactions.h +include/td/telegram/ChatReactions.hpp include/td/telegram/Client.h +include/td/telegram/ClientActor.h +include/td/telegram/ClientJson.h +include/td/telegram/CommonDialogManager.h +include/td/telegram/ConfigManager.h +include/td/telegram/ConnectionState.h +include/td/telegram/ConnectionStateManager.h +include/td/telegram/Contact.h +include/td/telegram/CountryInfoManager.h +include/td/telegram/CustomEmojiId.h +include/td/telegram/DelayDispatcher.h +include/td/telegram/Dependencies.h +include/td/telegram/DeviceTokenManager.h +include/td/telegram/DhCache.h +include/td/telegram/DhConfig.h +include/td/telegram/DialogAction.h +include/td/telegram/DialogActionBar.h +include/td/telegram/DialogActionManager.h +include/td/telegram/DialogAdministrator.h +include/td/telegram/DialogBoostLinkInfo.h +include/td/telegram/DialogDate.h +include/td/telegram/DialogDb.h +include/td/telegram/DialogEventLog.h +include/td/telegram/DialogFilter.h +include/td/telegram/DialogFilter.hpp +include/td/telegram/DialogFilterDialogInfo.h +include/td/telegram/DialogFilterId.h +include/td/telegram/DialogFilterInviteLink.h +include/td/telegram/DialogFilterManager.h +include/td/telegram/DialogId.h +include/td/telegram/DialogInviteLink.h +include/td/telegram/DialogInviteLink.hpp +include/td/telegram/DialogInviteLinkManager.h +include/td/telegram/DialogListId.h +include/td/telegram/DialogLocation.h +include/td/telegram/DialogManager.h +include/td/telegram/DialogNotificationSettings.h +include/td/telegram/DialogNotificationSettings.hpp +include/td/telegram/DialogParticipant.h +include/td/telegram/DialogParticipantFilter.h +include/td/telegram/DialogParticipantManager.h +include/td/telegram/DialogSource.h +include/td/telegram/Dimensions.h +include/td/telegram/Dimensions.hpp +include/td/telegram/DisallowedGiftsSettings.h +include/td/telegram/DisallowedGiftsSettings.hpp +include/td/telegram/Document.h +include/td/telegram/Document.hpp +include/td/telegram/DocumentsManager.h +include/td/telegram/DocumentsManager.hpp +include/td/telegram/DownloadManager.h +include/td/telegram/DownloadManagerCallback.h +include/td/telegram/DraftMessage.h +include/td/telegram/DraftMessage.hpp +include/td/telegram/EmailVerification.h +include/td/telegram/EmojiGroup.h +include/td/telegram/EmojiGroup.hpp +include/td/telegram/EmojiGroupType.h +include/td/telegram/EmojiStatus.h +include/td/telegram/EncryptedFile.h +include/td/telegram/FactCheck.h +include/td/telegram/FactCheck.hpp +include/td/telegram/FileReferenceManager.h +include/td/telegram/FileReferenceManager.hpp +include/td/telegram/FolderId.h +include/td/telegram/ForumTopic.h +include/td/telegram/ForumTopic.hpp +include/td/telegram/ForumTopicEditedData.h +include/td/telegram/ForumTopicEditedData.hpp +include/td/telegram/ForumTopicIcon.h +include/td/telegram/ForumTopicIcon.hpp +include/td/telegram/ForumTopicInfo.h +include/td/telegram/ForumTopicInfo.hpp +include/td/telegram/ForumTopicManager.h +include/td/telegram/Game.h +include/td/telegram/Game.hpp +include/td/telegram/GameManager.h +include/td/telegram/GitCommitHash.h +include/td/telegram/GiveawayParameters.h +include/td/telegram/GiveawayParameters.hpp +include/td/telegram/Global.h +include/td/telegram/GlobalPrivacySettings.h +include/td/telegram/GroupCallId.h +include/td/telegram/GroupCallJoinParameters.h +include/td/telegram/GroupCallManager.h +include/td/telegram/GroupCallParticipant.h +include/td/telegram/GroupCallParticipantOrder.h +include/td/telegram/GroupCallVideoPayload.h +include/td/telegram/HashtagHints.h +include/td/telegram/InlineMessageManager.h +include/td/telegram/InlineQueriesManager.h +include/td/telegram/InputBusinessChatLink.h +include/td/telegram/InputDialogId.h +include/td/telegram/InputGroupCall.h +include/td/telegram/InputGroupCallId.h +include/td/telegram/InputInvoice.h +include/td/telegram/InputInvoice.hpp +include/td/telegram/InputMessageText.h +include/td/telegram/InputMessageText.hpp +include/td/telegram/JsonValue.h +include/td/telegram/LabeledPricePart.h +include/td/telegram/LanguagePackManager.h +include/td/telegram/LinkManager.h +include/td/telegram/Location.h include/td/telegram/Log.h +include/td/telegram/Logging.h +include/td/telegram/MediaArea.h +include/td/telegram/MediaArea.hpp +include/td/telegram/MediaAreaCoordinates.h +include/td/telegram/MediaAreaCoordinates.hpp +include/td/telegram/MessageContent.h +include/td/telegram/MessageContentType.h +include/td/telegram/MessageCopyOptions.h +include/td/telegram/MessageDb.h +include/td/telegram/MessageEffectId.h +include/td/telegram/MessageEntity.h +include/td/telegram/MessageEntity.hpp +include/td/telegram/MessageExtendedMedia.h +include/td/telegram/MessageExtendedMedia.hpp +include/td/telegram/MessageForwardInfo.h +include/td/telegram/MessageForwardInfo.hpp +include/td/telegram/MessageFullId.h +include/td/telegram/MessageId.h +include/td/telegram/MessageImportManager.h +include/td/telegram/MessageInputReplyTo.h +include/td/telegram/MessageInputReplyTo.hpp +include/td/telegram/MessageLinkInfo.h +include/td/telegram/MessageOrigin.h +include/td/telegram/MessageOrigin.hpp +include/td/telegram/MessageQueryManager.h +include/td/telegram/MessageQuote.h +include/td/telegram/MessageQuote.hpp +include/td/telegram/MessageReaction.h +include/td/telegram/MessageReaction.hpp +include/td/telegram/MessageReactor.h +include/td/telegram/MessageReactor.hpp +include/td/telegram/MessageReplyHeader.h +include/td/telegram/MessageReplyInfo.h +include/td/telegram/MessageReplyInfo.hpp +include/td/telegram/MessageSearchFilter.h +include/td/telegram/MessageSearchOffset.h +include/td/telegram/MessageSelfDestructType.h +include/td/telegram/MessageSender.h +include/td/telegram/MessageSource.h +include/td/telegram/MessageThreadDb.h +include/td/telegram/MessageThreadInfo.h +include/td/telegram/MessageTtl.h +include/td/telegram/MessageViewer.h +include/td/telegram/MessagesInfo.h +include/td/telegram/MessagesManager.h +include/td/telegram/MinChannel.h +include/td/telegram/MinChannel.hpp +include/td/telegram/MissingInvitee.h +include/td/telegram/NewPasswordState.h +include/td/telegram/Notification.h +include/td/telegram/NotificationGroupFromDatabase.h +include/td/telegram/NotificationGroupId.h +include/td/telegram/NotificationGroupInfo.h +include/td/telegram/NotificationGroupInfo.hpp +include/td/telegram/NotificationGroupKey.h +include/td/telegram/NotificationGroupType.h +include/td/telegram/NotificationId.h +include/td/telegram/NotificationManager.h +include/td/telegram/NotificationObjectFullId.h +include/td/telegram/NotificationObjectId.h +include/td/telegram/NotificationSettingsManager.h +include/td/telegram/NotificationSettingsScope.h +include/td/telegram/NotificationSound.h +include/td/telegram/NotificationSoundType.h +include/td/telegram/NotificationType.h +include/td/telegram/OnlineManager.h +include/td/telegram/OptionManager.h +include/td/telegram/OrderInfo.h +include/td/telegram/OrderInfo.hpp +include/td/telegram/OrderedMessage.h +include/td/telegram/Outline.h +include/td/telegram/PaidReactionType.h +include/td/telegram/PaidReactionType.hpp +include/td/telegram/PasswordManager.h +include/td/telegram/Payments.h +include/td/telegram/PeerColor.h +include/td/telegram/PeopleNearbyManager.h +include/td/telegram/PhoneNumberManager.h +include/td/telegram/Photo.h +include/td/telegram/Photo.hpp +include/td/telegram/PhotoFormat.h +include/td/telegram/PhotoSize.h +include/td/telegram/PhotoSize.hpp +include/td/telegram/PhotoSizeSource.h +include/td/telegram/PhotoSizeSource.hpp +include/td/telegram/PhotoSizeType.h +include/td/telegram/PhotoSizeType.hpp +include/td/telegram/PollId.h +include/td/telegram/PollId.hpp +include/td/telegram/PollManager.h +include/td/telegram/PollManager.hpp +include/td/telegram/Premium.h +include/td/telegram/PremiumGiftOption.h +include/td/telegram/PremiumGiftOption.hpp +include/td/telegram/PrivacyManager.h +include/td/telegram/PromoDataManager.h +include/td/telegram/PtsManager.h +include/td/telegram/PublicDialogType.h +include/td/telegram/QueryCombiner.h +include/td/telegram/QueryMerger.h +include/td/telegram/QuickReplyManager.h +include/td/telegram/QuickReplyMessageFullId.h +include/td/telegram/QuickReplyShortcutId.h +include/td/telegram/ReactionListType.h +include/td/telegram/ReactionManager.h +include/td/telegram/ReactionManager.hpp +include/td/telegram/ReactionNotificationSettings.h +include/td/telegram/ReactionNotificationSettings.hpp +include/td/telegram/ReactionNotificationsFrom.h +include/td/telegram/ReactionNotificationsFrom.hpp +include/td/telegram/ReactionType.h +include/td/telegram/ReactionType.hpp +include/td/telegram/ReactionUnavailabilityReason.h +include/td/telegram/RecentDialogList.h +include/td/telegram/ReferralProgramInfo.h +include/td/telegram/ReferralProgramInfo.hpp +include/td/telegram/ReferralProgramManager.h +include/td/telegram/ReferralProgramParameters.h +include/td/telegram/ReferralProgramParameters.hpp +include/td/telegram/ReferralProgramSortOrder.h +include/td/telegram/RepliedMessageInfo.h +include/td/telegram/RepliedMessageInfo.hpp +include/td/telegram/ReplyMarkup.h +include/td/telegram/ReplyMarkup.hpp +include/td/telegram/ReportReason.h +include/td/telegram/RequestActor.h +include/td/telegram/RequestedDialogType.h +include/td/telegram/RequestedDialogType.hpp +include/td/telegram/Requests.h +include/td/telegram/RestrictionReason.h +include/td/telegram/SavedMessagesManager.h +include/td/telegram/SavedMessagesTopicId.h +include/td/telegram/ScheduledServerMessageId.h +include/td/telegram/ScopeNotificationSettings.h +include/td/telegram/ScopeNotificationSettings.hpp +include/td/telegram/SecretChatActor.h +include/td/telegram/SecretChatDb.h +include/td/telegram/SecretChatId.h +include/td/telegram/SecretChatLayer.h +include/td/telegram/SecretChatsManager.h +include/td/telegram/SecretInputMedia.h +include/td/telegram/SecureManager.h +include/td/telegram/SecureStorage.h +include/td/telegram/SecureValue.h +include/td/telegram/SecureValue.hpp +include/td/telegram/SendCodeHelper.h +include/td/telegram/SendCodeHelper.hpp +include/td/telegram/SentEmailCode.h +include/td/telegram/SequenceDispatcher.h +include/td/telegram/ServerMessageId.h +include/td/telegram/SetWithPosition.h +include/td/telegram/SharedDialog.h +include/td/telegram/SharedDialog.hpp +include/td/telegram/SpecialStickerSetType.h +include/td/telegram/SponsoredMessageManager.h +include/td/telegram/StarAmount.h +include/td/telegram/StarAmount.hpp +include/td/telegram/StarGift.h +include/td/telegram/StarGift.hpp +include/td/telegram/StarGiftAttribute.h +include/td/telegram/StarGiftAttribute.hpp +include/td/telegram/StarGiftId.h +include/td/telegram/StarGiftId.hpp +include/td/telegram/StarGiftManager.h +include/td/telegram/StarGiftSettings.h +include/td/telegram/StarGiftSettings.hpp +include/td/telegram/StarManager.h +include/td/telegram/StarSubscription.h +include/td/telegram/StarSubscriptionPricing.h +include/td/telegram/StarSubscriptionPricing.hpp +include/td/telegram/StateManager.h +include/td/telegram/StatisticsManager.h +include/td/telegram/StickerFormat.h +include/td/telegram/StickerListType.h +include/td/telegram/StickerMaskPosition.h +include/td/telegram/StickerMaskPosition.hpp +include/td/telegram/StickerPhotoSize.h +include/td/telegram/StickerPhotoSize.hpp +include/td/telegram/StickerSetId.h +include/td/telegram/StickerType.h +include/td/telegram/StickersManager.h +include/td/telegram/StickersManager.hpp +include/td/telegram/StorageManager.h +include/td/telegram/StoryContent.h +include/td/telegram/StoryContentType.h +include/td/telegram/StoryDb.h +include/td/telegram/StoryForwardInfo.h +include/td/telegram/StoryForwardInfo.hpp +include/td/telegram/StoryFullId.h +include/td/telegram/StoryId.h +include/td/telegram/StoryInteractionInfo.h +include/td/telegram/StoryInteractionInfo.hpp +include/td/telegram/StoryListId.h +include/td/telegram/StoryManager.h +include/td/telegram/StoryNotificationSettings.h +include/td/telegram/StoryStealthMode.h +include/td/telegram/StoryStealthMode.hpp +include/td/telegram/StoryViewer.h +include/td/telegram/SuggestedAction.h +include/td/telegram/SuggestedAction.hpp +include/td/telegram/SuggestedActionManager.h +include/td/telegram/Support.h +include/td/telegram/SynchronousRequests.h +include/td/telegram/TargetDialogTypes.h +include/td/telegram/Td.h +include/td/telegram/TdCallback.h +include/td/telegram/TdDb.h +include/td/telegram/TermsOfService.h +include/td/telegram/TermsOfService.hpp +include/td/telegram/TermsOfServiceManager.h +include/td/telegram/ThemeManager.h +include/td/telegram/ThemeSettings.h +include/td/telegram/ThemeSettings.hpp +include/td/telegram/TimeZoneManager.h +include/td/telegram/TopDialogCategory.h +include/td/telegram/TopDialogManager.h +include/td/telegram/TranscriptionInfo.h +include/td/telegram/TranscriptionInfo.hpp +include/td/telegram/TranscriptionManager.h +include/td/telegram/TranslationManager.h +include/td/telegram/UniqueId.h +include/td/telegram/UpdatesManager.h +include/td/telegram/UserId.h +include/td/telegram/UserManager.h +include/td/telegram/UserPrivacySetting.h +include/td/telegram/UserPrivacySettingRule.h +include/td/telegram/UserStarGift.h +include/td/telegram/Usernames.h +include/td/telegram/Venue.h +include/td/telegram/VerificationStatus.h +include/td/telegram/Version.h +include/td/telegram/VideoNotesManager.h +include/td/telegram/VideoNotesManager.hpp +include/td/telegram/VideosManager.h +include/td/telegram/VideosManager.hpp +include/td/telegram/VoiceNotesManager.h +include/td/telegram/VoiceNotesManager.hpp +include/td/telegram/WebApp.h +include/td/telegram/WebApp.hpp +include/td/telegram/WebAppManager.h +include/td/telegram/WebAppOpenParameters.h +include/td/telegram/WebPageBlock.h +include/td/telegram/WebPageId.h +include/td/telegram/WebPagesManager.h +include/td/telegram/files/FileBitmask.h +include/td/telegram/files/FileData.h +include/td/telegram/files/FileData.hpp +include/td/telegram/files/FileDb.h +include/td/telegram/files/FileDbId.h +include/td/telegram/files/FileDownloadManager.h +include/td/telegram/files/FileDownloader.h +include/td/telegram/files/FileEncryptionKey.h +include/td/telegram/files/FileFromBytes.h +include/td/telegram/files/FileGcParameters.h +include/td/telegram/files/FileGcWorker.h +include/td/telegram/files/FileGenerateManager.h +include/td/telegram/files/FileHashUploader.h +include/td/telegram/files/FileId.h +include/td/telegram/files/FileId.hpp +include/td/telegram/files/FileLoadManager.h +include/td/telegram/files/FileLoaderActor.h +include/td/telegram/files/FileLoaderUtils.h +include/td/telegram/files/FileLocation.h +include/td/telegram/files/FileLocation.hpp +include/td/telegram/files/FileManager.h +include/td/telegram/files/FileManager.hpp +include/td/telegram/files/FileSourceId.h +include/td/telegram/files/FileSourceId.hpp +include/td/telegram/files/FileStats.h +include/td/telegram/files/FileStatsWorker.h +include/td/telegram/files/FileType.h +include/td/telegram/files/FileUploadId.h +include/td/telegram/files/FileUploadManager.h +include/td/telegram/files/FileUploader.h +include/td/telegram/files/PartsManager.h +include/td/telegram/files/ResourceManager.h +include/td/telegram/files/ResourceState.h +include/td/telegram/logevent/LogEvent.h +include/td/telegram/logevent/LogEventHelper.h +include/td/telegram/logevent/SecretChatEvent.h +include/td/telegram/misc.h +include/td/telegram/net/AuthDataShared.h +include/td/telegram/net/AuthKeyState.h +include/td/telegram/net/ConnectionCreator.h +include/td/telegram/net/DcAuthManager.h +include/td/telegram/net/DcId.h +include/td/telegram/net/DcOptions.h +include/td/telegram/net/DcOptionsSet.h +include/td/telegram/net/MtprotoHeader.h +include/td/telegram/net/NetActor.h +include/td/telegram/net/NetQuery.h +include/td/telegram/net/NetQueryCounter.h +include/td/telegram/net/NetQueryCreator.h +include/td/telegram/net/NetQueryDelayer.h +include/td/telegram/net/NetQueryDispatcher.h +include/td/telegram/net/NetQueryStats.h +include/td/telegram/net/NetQueryVerifier.h +include/td/telegram/net/NetStatsManager.h +include/td/telegram/net/NetType.h +include/td/telegram/net/Proxy.h +include/td/telegram/net/PublicRsaKeySharedCdn.h +include/td/telegram/net/PublicRsaKeySharedMain.h +include/td/telegram/net/PublicRsaKeyWatchdog.h +include/td/telegram/net/Session.h +include/td/telegram/net/SessionMultiProxy.h +include/td/telegram/net/SessionProxy.h +include/td/telegram/net/TempAuthKeyWatchdog.h include/td/telegram/td_api.h include/td/telegram/td_api.hpp +include/td/telegram/td_c_client.h include/td/telegram/td_json_client.h include/td/telegram/td_log.h include/td/telegram/tdjson_export.h include/td/tl/TlObject.h +include/td/utils/AesCtrByteFlow.h +include/td/utils/AsyncFileLog.h +include/td/utils/AtomicRead.h +include/td/utils/BigNum.h +include/td/utils/BufferedFd.h +include/td/utils/BufferedReader.h +include/td/utils/BufferedUdp.h +include/td/utils/ByteFlow.h +include/td/utils/CancellationToken.h +include/td/utils/ChainScheduler.h +include/td/utils/ChangesProcessor.h +include/td/utils/Closure.h +include/td/utils/CombinedLog.h +include/td/utils/ConcurrentHashTable.h +include/td/utils/Container.h +include/td/utils/Context.h +include/td/utils/DecTree.h +include/td/utils/Destructor.h +include/td/utils/Ed25519.h +include/td/utils/Enumerator.h +include/td/utils/EpochBasedMemoryReclamation.h +include/td/utils/ExitGuard.h +include/td/utils/FileLog.h +include/td/utils/FlatHashMap.h +include/td/utils/FlatHashMapChunks.h +include/td/utils/FlatHashSet.h +include/td/utils/FlatHashTable.h +include/td/utils/FloodControlFast.h +include/td/utils/FloodControlGlobal.h +include/td/utils/FloodControlStrict.h +include/td/utils/Gzip.h +include/td/utils/GzipByteFlow.h +include/td/utils/Hash.h +include/td/utils/HashMap.h +include/td/utils/HashSet.h +include/td/utils/HashTableUtils.h +include/td/utils/HazardPointers.h +include/td/utils/Heap.h +include/td/utils/Hints.h +include/td/utils/HttpDate.h +include/td/utils/HttpUrl.h +include/td/utils/JsonBuilder.h +include/td/utils/List.h +include/td/utils/MapNode.h +include/td/utils/MemoryLog.h +include/td/utils/MimeType.h +include/td/utils/MovableValue.h +include/td/utils/MpmcQueue.h +include/td/utils/MpmcWaiter.h +include/td/utils/MpscLinkQueue.h +include/td/utils/MpscPollableQueue.h +include/td/utils/Named.h +include/td/utils/NullLog.h +include/td/utils/ObjectPool.h +include/td/utils/Observer.h +include/td/utils/OptionParser.h +include/td/utils/OrderedEventsProcessor.h +include/td/utils/Parser.h +include/td/utils/PathView.h +include/td/utils/Promise.h +include/td/utils/Random.h +include/td/utils/ScopeGuard.h +include/td/utils/SetNode.h +include/td/utils/SharedObjectPool.h +include/td/utils/SharedSlice.h +include/td/utils/Slice-decl.h +include/td/utils/Slice.h +include/td/utils/SliceBuilder.h +include/td/utils/Span.h +include/td/utils/SpinLock.h +include/td/utils/StackAllocator.h +include/td/utils/Status.h +include/td/utils/StealingQueue.h +include/td/utils/Storer.h +include/td/utils/StorerBase.h +include/td/utils/StringBuilder.h +include/td/utils/ThreadLocalStorage.h +include/td/utils/ThreadSafeCounter.h +include/td/utils/Time.h +include/td/utils/TimedStat.h +include/td/utils/Timer.h +include/td/utils/TlDowncastHelper.h +include/td/utils/TlStorerToString.h +include/td/utils/TsCerr.h +include/td/utils/TsFileLog.h +include/td/utils/TsList.h +include/td/utils/TsLog.h +include/td/utils/UInt.h +include/td/utils/Variant.h +include/td/utils/VectorQueue.h +include/td/utils/WaitFreeHashMap.h +include/td/utils/WaitFreeHashSet.h +include/td/utils/WaitFreeVector.h +include/td/utils/algorithm.h +include/td/utils/as.h +include/td/utils/base64.h +include/td/utils/benchmark.h +include/td/utils/bits.h +include/td/utils/buffer.h +include/td/utils/check.h +include/td/utils/common.h +include/td/utils/crypto.h +include/td/utils/emoji.h +include/td/utils/filesystem.h +include/td/utils/find_boundary.h +include/td/utils/fixed_vector.h +include/td/utils/format.h +include/td/utils/int_types.h +include/td/utils/invoke.h +include/td/utils/logging.h +include/td/utils/misc.h +include/td/utils/optional.h +include/td/utils/overloaded.h +include/td/utils/port/Clocks.h +include/td/utils/port/CxCli.h +include/td/utils/port/EventFd.h +include/td/utils/port/EventFdBase.h +include/td/utils/port/FileFd.h +include/td/utils/port/FromApp.h +include/td/utils/port/IPAddress.h +include/td/utils/port/IoSlice.h +include/td/utils/port/MemoryMapping.h +include/td/utils/port/Mutex.h +include/td/utils/port/Poll.h +include/td/utils/port/PollBase.h +include/td/utils/port/PollFlags.h +include/td/utils/port/RwMutex.h +include/td/utils/port/ServerSocketFd.h +include/td/utils/port/SocketFd.h +include/td/utils/port/Stat.h +include/td/utils/port/StdStreams.h +include/td/utils/port/UdpSocketFd.h +include/td/utils/port/config.h +include/td/utils/port/detail/Epoll.h +include/td/utils/port/detail/EventFdBsd.h +include/td/utils/port/detail/EventFdLinux.h +include/td/utils/port/detail/EventFdWindows.h +include/td/utils/port/detail/Iocp.h +include/td/utils/port/detail/KQueue.h +include/td/utils/port/detail/NativeFd.h +include/td/utils/port/detail/Poll.h +include/td/utils/port/detail/PollableFd.h +include/td/utils/port/detail/Select.h +include/td/utils/port/detail/ThreadIdGuard.h +include/td/utils/port/detail/ThreadPthread.h +include/td/utils/port/detail/ThreadStl.h +include/td/utils/port/detail/WineventPoll.h +include/td/utils/port/detail/skip_eintr.h +include/td/utils/port/path.h +include/td/utils/port/platform.h +include/td/utils/port/rlimit.h +include/td/utils/port/signals.h +include/td/utils/port/sleep.h +include/td/utils/port/stacktrace.h +include/td/utils/port/thread.h +include/td/utils/port/thread_local.h +include/td/utils/port/uname.h +include/td/utils/port/user.h +include/td/utils/port/wstring_convert.h +include/td/utils/queue.h +include/td/utils/simple_tests.h +include/td/utils/tests.h +include/td/utils/tl_helpers.h +include/td/utils/tl_parsers.h +include/td/utils/tl_storers.h +include/td/utils/translit.h +include/td/utils/type_traits.h +include/td/utils/uint128.h +include/td/utils/unicode.h +include/td/utils/unique_ptr.h +include/td/utils/unique_value_ptr.h +include/td/utils/utf8.h lib/cmake/Td/TdConfig.cmake lib/cmake/Td/TdConfigVersion.cmake +lib/cmake/Td/TdStaticTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Td/TdStaticTargets.cmake lib/cmake/Td/TdTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Td/TdTargets.cmake -lib/libtdactor.a +lib/libtdactor.so lib/libtdapi.so -lib/libtdapi.so.1.8.0 lib/libtdclient.so -lib/libtdclient.so.1.8.0 -lib/libtdcore.a -lib/libtddb.a +lib/libtdcore.so +lib/libtddb.so +lib/libtde2e.so lib/libtdjson.so -lib/libtdjson.so.1.8.0 -lib/libtdjson_private.a -lib/libtdjson_static.a -lib/libtdnet.a -lib/libtdsqlite.a -lib/libtdutils.a +lib/libtdjson.so.%%LIBVERSION%% +lib/libtdjson_private.so +lib/libtdjson_static.so +lib/libtdmtproto.so +lib/libtdnet.so +lib/libtdsqlite.so +lib/libtdutils.so libdata/pkgconfig/tdactor.pc libdata/pkgconfig/tdapi.pc libdata/pkgconfig/tdclient.pc libdata/pkgconfig/tdcore.pc libdata/pkgconfig/tddb.pc +libdata/pkgconfig/tde2e.pc libdata/pkgconfig/tdjson.pc libdata/pkgconfig/tdjson_private.pc libdata/pkgconfig/tdjson_static.pc +libdata/pkgconfig/tdmtproto.pc libdata/pkgconfig/tdnet.pc libdata/pkgconfig/tdsqlite.pc libdata/pkgconfig/tdutils.pc |