upd todo in tox.py
This commit is contained in:
parent
7d60e1344d
commit
e0dd55d395
1 changed files with 15 additions and 4 deletions
19
src/tox.py
19
src/tox.py
|
@ -1001,18 +1001,29 @@ class Tox(object):
|
||||||
Tox.libtoxcore.tox_callback_friend_message(self._tox_pointer, self.tox_friend_message_cb, c_void_p(user_data))
|
Tox.libtoxcore.tox_callback_friend_message(self._tox_pointer, self.tox_friend_message_cb, c_void_p(user_data))
|
||||||
|
|
||||||
# TODO File transmission: common between sending and receiving
|
# TODO File transmission: common between sending and receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
# File transmission: common between sending and receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
# TODO File transmission: sending
|
# TODO File transmission: sending
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
# File transmission: sending
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
# TODO File transmission: receiving
|
# TODO File transmission: receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
# TODO Group chat management
|
# File transmission: receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
# TODO Group chat message sending and receiving
|
|
||||||
|
|
||||||
# TODO Low-level custom packet sending and receiving
|
# TODO Low-level custom packet sending and receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
# Low-level custom packet sending and receiving
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
# TODO Low-level network information
|
# TODO Low-level network information
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
# Low-level network information
|
||||||
|
# -----------------------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
Tox.libtoxcore.tox_kill(self._tox_pointer)
|
Tox.libtoxcore.tox_kill(self._tox_pointer)
|
||||||
|
|
Loading…
Reference in a new issue