2017-11-30 15:20:51 +03:00
|
|
|
"""
|
|
|
|
This module contains several classes regarding network, low level connection
|
|
|
|
with Telegram's servers and the protocol used (TCP full, abridged, etc.).
|
|
|
|
"""
|
2018-06-07 17:32:12 +03:00
|
|
|
from .mtprotoplainsender import MTProtoPlainSender
|
2016-09-04 13:42:11 +03:00
|
|
|
from .authenticator import do_authentication
|
2018-06-07 12:51:09 +03:00
|
|
|
from .mtprotosender import MTProtoSender
|
2018-05-10 15:22:19 +03:00
|
|
|
from .connection import (
|
2019-05-03 22:37:27 +03:00
|
|
|
Connection,
|
2019-02-11 02:16:46 +03:00
|
|
|
ConnectionTcpFull, ConnectionTcpIntermediate, ConnectionTcpAbridged,
|
2019-03-10 03:00:11 +03:00
|
|
|
ConnectionTcpObfuscated, ConnectionTcpMTProxyAbridged,
|
|
|
|
ConnectionTcpMTProxyIntermediate,
|
|
|
|
ConnectionTcpMTProxyRandomizedIntermediate, ConnectionHttp, TcpMTProxy
|
2018-05-10 15:22:19 +03:00
|
|
|
)
|