summaryrefslogtreecommitdiff
path: root/protocols/Telegram/src/tgl/tgl-methods-in.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Telegram/src/tgl/tgl-methods-in.h')
-rw-r--r--protocols/Telegram/src/tgl/tgl-methods-in.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/protocols/Telegram/src/tgl/tgl-methods-in.h b/protocols/Telegram/src/tgl/tgl-methods-in.h
new file mode 100644
index 0000000000..0d149db7d6
--- /dev/null
+++ b/protocols/Telegram/src/tgl/tgl-methods-in.h
@@ -0,0 +1,50 @@
+// normally you should not use these methods
+// use them with caution
+
+
+#ifndef __TGL_METHODS_IN_H__
+#define __TGL_METHODS_IN_H__
+
+/* {{{ AUTHORIZATION METHODS. NORMALLY YOU DON'T NEED THEM */
+
+// send query to updated DCs' ips
+// automatically renews data on update
+void tgl_do_help_get_config (struct tgl_state *TLS, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success), void *callback_extra);
+
+// requests server to send code to specified phone number
+// if user is logged in elsewhere message will first appear as telegram message
+// and SMS will be sent some time after
+void tgl_do_send_code (struct tgl_state *TLS, const char *phone, int phone_len, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success, int registered, const char *hash), void *callback_extra);
+
+// request server to send code via phone call
+void tgl_do_phone_call (struct tgl_state *TLS, const char *phone, int phone_len, const char *hash, int hash_len, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success), void *callback_extra);
+
+// sends code from SMS to server. This step should end authorization, unless user have password
+int tgl_do_send_code_result (struct tgl_state *TLS, const char *phone, int phone_len, const char *hash, int hash_len, const char *code, int code_len, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success, struct tgl_user *Self), void *callback_extra);
+
+
+// sends code from SMS, username and lastname to server. This step should end new user registration
+int tgl_do_send_code_result_auth (struct tgl_state *TLS, const char *phone, int phone_len, const char *hash, int hash_len, const char *code, int code_len, const char *first_name, int first_name_len, const char *last_name, int last_name_len, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success, struct tgl_user *Self), void *callback_extra);
+
+/* }}} */
+
+void tgl_do_send_msg (struct tgl_state *TLS, struct tgl_message *M, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success, struct tgl_message *M), void *callback_extra);
+
+void tgl_do_check_password (struct tgl_state *TLS, void (*callback)(struct tgl_state *TLS, void *extra, int success), void *callback_extra);
+
+void tgl_do_export_auth (struct tgl_state *TLS, int num, void (*callback) (struct tgl_state *TLS, void *callback_extra, int success), void *callback_extra);
+
+void tgl_do_create_secret_chat (struct tgl_state *TLS, tgl_peer_id_t id, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success, struct tgl_secret_chat *E), void *callback_extra);
+
+void tgl_do_get_difference (struct tgl_state *TLS, int sync_from_start, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success), void *callback_extra);
+
+void tgl_do_lookup_state (struct tgl_state *TLS);
+
+void tgl_do_help_get_config_dc (struct tgl_state *TLS, struct tgl_dc *D, void (*callback)(struct tgl_state *TLS, void *, int), void *callback_extra);
+
+void tgl_do_request_exchange (struct tgl_state *TLS, struct tgl_secret_chat *E);
+
+void tgl_do_create_keys_end (struct tgl_state *TLS, struct tgl_secret_chat *U);
+
+void tgl_do_send_encr_chat_layer (struct tgl_state *TLS, struct tgl_secret_chat *E);
+#endif