Aliaksei Levin

Results 707 comments of Aliaksei Levin

It is strange to document lack of official support of a third-party tool, even it is so popular as Docker.

@esindger The latest TDLib version has new JSON interface which allows to receive updates and responses for all TDLib instances in the same thread. The new interface is supposed to...

@AndrewLaneX This is a hard to workaround race condition in the new API: https://github.com/tdlib/td/issues/1242. We will change the new TDLib API to mitigate its possibility.

@esindger In the latest TDLib version we replaced the function `td_create_client` with the function `td_create_client_id`. It assigns client ID, but defers client creation until first request is sent to it....

This isn't an issue. There are no reasons to detect memory leaks during compilation.

We usually just disable leak detection during build phase: ``` export ASAN_OPTIONS=detect_leaks=0 cmake --build . --target install unset ASAN_OPTIONS ```

In the latest TDLib versions method `Client::Run` is a static method and needs to be called only once before the first `Client` is created on a separate dedicated thread. The...

The server returned incorrect response. Could you send log with verbosity level 3 to @tdlib_bot?

The authorization process is the same as in all other clients. You will receive `updateAuthorizationState` if authorization state is changed.

No. But you can use test DC, which has test accounts: https://core.telegram.org/api/auth#test-accounts.