void read_dc(tgl_state *TLS, int *&piBlob, int id) { int port = *piBlob++; int l = *piBlob++; assert(l >= 0 && l < 100); char ip[100]; memcpy(ip, piBlob, l); piBlob += (l / sizeof(int)); ip[l] = 0; long long auth_key_id = *(long long*)piBlob; piBlob += 2; static unsigned char auth_key[256]; memcpy(auth_key, piBlob, 256); piBlob += (256 / sizeof(int)); bl_do_dc_option(TLS, id, "DC", 2, ip, l, port); bl_do_set_auth_key(TLS, id, auth_key); bl_do_dc_signed(TLS, id); }
void read_dc (int auth_file_fd, int id, unsigned ver) { int port = 0; assert (read (auth_file_fd, &port, 4) == 4); int l = 0; assert (read (auth_file_fd, &l, 4) == 4); assert (l >= 0 && l < 100); char ip[100]; assert (read (auth_file_fd, ip, l) == l); ip[l] = 0; long long auth_key_id; static unsigned char auth_key[256]; assert (read (auth_file_fd, &auth_key_id, 8) == 8); assert (read (auth_file_fd, auth_key, 256) == 256); //bl_do_add_dc (id, ip, l, port, auth_key_id, auth_key); bl_do_dc_option (TLS, 0, id, "DC", 2, ip, l, port); bl_do_set_auth_key (TLS, id, auth_key); bl_do_dc_signed (TLS, id); }
void read_dc(struct tgl_state *TLS, int auth_file_fd, int id, unsigned ver) { int port = 0; assert(read(auth_file_fd, &port, 4) == 4); int l = 0; assert(read(auth_file_fd, &l, 4) == 4); assert(l >= 0 && l < 100); char ip[100]; assert(read(auth_file_fd, ip, l) == l); ip[l] = 0; long long auth_key_id; static unsigned char auth_key[256]; assert(read(auth_file_fd, &auth_key_id, 8) == 8); assert(read(auth_file_fd, auth_key, 256) == 256); bl_do_dc_option(TLS, id, "DC", 2, ip, l, port); bl_do_set_auth_key(TLS, id, auth_key); bl_do_dc_signed(TLS, id); TLS->callback.logprintf("read dc: id=%d", id); }