X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fcontrol.c;h=d22d5b0e244387240c5be5630ad4c5539a639012;hb=0b8b23e0dd7219344543f135ca0aeba8a4a42d48;hp=d074ebbafa7005bca163de4ff1460124ca2f5fda;hpb=40c28589328a2aa96c2ce1419c5d90616c758b3d;p=tinc diff --git a/src/control.c b/src/control.c index d074ebba..d22d5b0e 100644 --- a/src/control.c +++ b/src/control.c @@ -44,7 +44,7 @@ static bool control_ok(connection_t *c, int type) { return control_return(c, type, 0); } -bool control_h(connection_t *c, char *request) { +bool control_h(connection_t *c, const char *request) { int type; if(!c->status.control || c->allow_request != CONTROL) { @@ -99,16 +99,12 @@ bool control_h(connection_t *c, char *request) { case REQ_DISCONNECT: { char name[MAX_STRING_SIZE]; - connection_t *other; - splay_node_t *node, *next; bool found = false; if(sscanf(request, "%*d %*d " MAX_STRING, name) != 1) return control_return(c, REQ_DISCONNECT, -1); - for(node = connection_tree->head; node; node = next) { - next = node->next; - other = node->data; + for list_each(connection_t, other, connection_list) { if(strcmp(other->name, name)) continue; terminate_connection(other, other->status.active);