diff options
Diffstat (limited to 'src/starter/starterstroke.c')
-rw-r--r-- | src/starter/starterstroke.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/starter/starterstroke.c b/src/starter/starterstroke.c index c20e7f6e3..d271d4018 100644 --- a/src/starter/starterstroke.c +++ b/src/starter/starterstroke.c @@ -132,7 +132,12 @@ int starter_stroke_add_conn(starter_conn_t *conn) int starter_stroke_del_conn(starter_conn_t *conn) { - return 0; + stroke_msg_t msg; + + msg.type = STR_DEL_CONN; + msg.length = offsetof(stroke_msg_t, buffer); + msg.install.name = push_string(&msg, connection_name(conn)); + return send_stroke_msg(&msg); } int starter_stroke_route_conn(starter_conn_t *conn) |