consistently use the evtimer wrappers around the connection timeout.
authordlg <dlg@openbsd.org>
Tue, 4 Jul 2017 01:09:42 +0000 (01:09 +0000)
committerdlg <dlg@openbsd.org>
Tue, 4 Jul 2017 01:09:42 +0000 (01:09 +0000)
this is instead of setting the timeout up with event_set and
event_add, but removing it with evtimer_del. this uses evtimer_set
and evtimer_add.

usr.sbin/identd/identd.c

index 0529e17..431c248 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: identd.c,v 1.37 2017/07/04 01:07:32 dlg Exp $ */
+/*     $OpenBSD: identd.c,v 1.38 2017/07/04 01:09:42 dlg Exp $ */
 
 /*
  * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
@@ -753,8 +753,8 @@ identd_accept(int fd, short events, void *arg)
        event_set(&c->ev, s, EV_READ | EV_PERSIST, identd_request, c);
        event_add(&c->ev, NULL);
 
-       event_set(&c->tmo, s, 0, identd_timeout, c);
-       event_add(&c->tmo, &timeout);
+       evtimer_set(&c->tmo, identd_timeout, c);
+       evtimer_add(&c->tmo, &timeout);
 }
 
 void