Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/tgl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV V <vvaltman@aurum>2015-11-25 18:12:25 +0300
committerV V <vvaltman@aurum>2015-11-25 18:12:25 +0300
commit4e34ea2c0635b3904d96f233a70bba9392cb859d (patch)
tree7c0d4fa860ff2918567623d7a057032f3a597e92 /updates.c
parentb64e63ebba02bb37d3eb811eed4f6cd43d7d946d (diff)
support for layer 42
Diffstat (limited to 'updates.c')
-rw-r--r--updates.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/updates.c b/updates.c
index 3b0f71d..22aef31 100644
--- a/updates.c
+++ b/updates.c
@@ -35,9 +35,9 @@
void tgl_do_get_channel_difference (struct tgl_state *TLS, int channel_id, void (*callback)(struct tgl_state *TLS, void *callback_extra, int success), void *callback_extra);
static void fetch_dc_option (struct tgl_state *TLS, struct tl_ds_dc_option *DS_DO) {
- vlogprintf (E_DEBUG, "id = %d, name = %.*s ip = %.*s port = %d\n", DS_LVAL (DS_DO->id), DS_RSTR (DS_DO->hostname), DS_RSTR (DS_DO->ip_address), DS_LVAL (DS_DO->port));
+ vlogprintf (E_DEBUG, "id = %d, %.*s:%d\n", DS_LVAL (DS_DO->id), DS_RSTR (DS_DO->ip_address), DS_LVAL (DS_DO->port));
- bl_do_dc_option (TLS, DS_LVAL (DS_DO->flags), DS_LVAL (DS_DO->id), DS_STR (DS_DO->hostname), DS_STR (DS_DO->ip_address), DS_LVAL (DS_DO->port));
+ bl_do_dc_option (TLS, DS_LVAL (DS_DO->flags), DS_LVAL (DS_DO->id), NULL, 0, DS_STR (DS_DO->ip_address), DS_LVAL (DS_DO->port));
}
int tgl_check_pts_diff (struct tgl_state *TLS, int pts, int pts_count) {
@@ -525,6 +525,10 @@ void tglu_work_update (struct tgl_state *TLS, int check_only, struct tl_ds_updat
break;
case CODE_update_channel_message_views:
break;
+ case CODE_update_chat_admins:
+ break;
+ case CODE_update_chat_participant_admin:
+ break;
default:
assert (0);
}