added support for update_dc
This commit is contained in:
parent
ad25ab1b01
commit
447e094cfa
@ -1382,6 +1382,17 @@ void work_update (struct connection *c UU, long long msg_id UU) {
|
||||
print_end ();
|
||||
}
|
||||
break;
|
||||
case CODE_update_dc_options:
|
||||
{
|
||||
assert (fetch_int () == CODE_vector);
|
||||
int n = fetch_int ();
|
||||
assert (n >= 0);
|
||||
int i;
|
||||
for (i = 0; i < n; i++) {
|
||||
fetch_dc_option ();
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
logprintf ("Unknown update type %08x\n", op);
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user