diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2016-04-05 00:52:36 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2016-04-05 00:52:36 +0000 |
commit | 544db244c0e3ba6455424973af67fcb969db883a (patch) | |
tree | a87aaed391b3c74e13e67d3192a7e3a8a18692f1 /usr.sbin/iscsid | |
parent | 00d11cdaf20d2b2e70d598872b3bb4977a516df6 (diff) |
Remove the iterator for control connections unfinished and unused.
ok claudio
Diffstat (limited to 'usr.sbin/iscsid')
-rw-r--r-- | usr.sbin/iscsid/control.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/iscsid/control.c b/usr.sbin/iscsid/control.c index 47743fc326f..e2e0044e832 100644 --- a/usr.sbin/iscsid/control.c +++ b/usr.sbin/iscsid/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.8 2014/04/21 17:41:52 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.9 2016/04/05 00:52:35 yasuoka Exp $ */ /* * Copyright (c) 2010 Claudio Jeker <claudio@openbsd.org> @@ -34,7 +34,6 @@ #include "log.h" struct control { - TAILQ_ENTRY(control) entry; struct event ev; struct pduq channel; int fd; @@ -46,8 +45,6 @@ struct control_state { int fd; } *control_state; -TAILQ_HEAD(, control) controls; - #define CONTROL_BACKLOG 5 void control_accept(int, short, void *); @@ -112,7 +109,6 @@ control_init(char *path) socket_setblockmode(fd, 1); control_state->fd = fd; - TAILQ_INIT(&controls); return 0; } @@ -120,15 +116,9 @@ control_init(char *path) void control_cleanup(char *path) { - struct control *c; - if (path) unlink(path); - while ((c = TAILQ_FIRST(&controls)) != NULL) { - TAILQ_REMOVE(&controls, c, entry); - control_close(c); - } event_del(&control_state->ev); event_del(&control_state->evt); close(control_state->fd); |