summaryrefslogtreecommitdiff
path: root/usr.sbin/identd/Makefile
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2013-03-18 00:34:49 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2013-03-18 00:34:49 +0000
commitc9e8d7e89b6bd422052c69bea2c841dcf20da448 (patch)
treeee6e626c3ac0c8ae0fc8f39695dbfc5170636bcd /usr.sbin/identd/Makefile
parentc0468ed3299fbaf7d9a8297819aa20988df0c046 (diff)
this is a new identd daemon to replace the libexec one that can be run
from inetd. it is an event driven non-blocking implemention using libevent. it features support for privilege separation and revocation. network connections are handled by a chrooted and unprivileged process, while the username lookups are handled by an unprivileged process. the lookups can block while the network handling can continue. it also features support for handling concurrent client connections. its currently lacking support for handling dotfiles in homedirs like the libexec one, and some error handling on accept. its going into the tree so it can be worked on with a history of changes.
Diffstat (limited to 'usr.sbin/identd/Makefile')
-rw-r--r--usr.sbin/identd/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/usr.sbin/identd/Makefile b/usr.sbin/identd/Makefile
new file mode 100644
index 00000000000..37ec17bd781
--- /dev/null
+++ b/usr.sbin/identd/Makefile
@@ -0,0 +1,11 @@
+# $OpenBSD: Makefile,v 1.1 2013/03/18 00:34:48 dlg Exp $
+
+PROG= identd
+SRCS= identd.c
+LDADD= -levent
+DPADD= ${LIBEVENT}
+CFLAGS+= -Wall -Werror
+
+MAN= identd.8
+
+.include <bsd.prog.mk>