mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-26 03:13:45 +03:00
f5f0c84553
Reduce abstraction leaks. Now the transport can hold any state, rather than just the tag. It's also responsible to initialize on the first connection, and they can be cleanly reset. asyncio connections are no longer used, in favour of raw sockets, which should avoid some annoyances. For the time being, more obscure transport modes have been removed, as well as proxy support, until further cleaning is done.
10 lines
356 B
Python
10 lines
356 B
Python
"""
|
|
This module contains several classes regarding network, low level connection
|
|
with Telegram's servers and the protocol used (TCP full, abridged, etc.).
|
|
"""
|
|
from .mtprotoplainsender import MTProtoPlainSender
|
|
from .authenticator import do_authentication
|
|
from .mtprotosender import MTProtoSender
|
|
from .connection import Connection
|
|
from . import transports
|