summaryrefslogtreecommitdiffstats
path: root/usr.sbin/identd (follow)
Commit message (Expand)AuthorAgeFilesLines
* snprintf/vsnprintf return < 0 on error, rather than -1.deraadt2019-07-031-2/+2
* Remove useless <sys/socketvar.h> includes.mpi2018-01-051-2/+2
* consistently use the evtimer wrappers around the connection timeout.dlg2017-07-041-3/+3
* include stdarg.h explicitly instead of relying on event.h to bring it in.dlg2017-07-041-1/+2
* Sync the severity of the syslog_* functions shared between identd, slowcgi,florian2017-05-261-5/+5
* removed unused function; from Edgar Pettijohnderaadt2017-04-181-15/+1
* Different compilers and versions of compilers have different warnings.jsg2017-04-161-2/+2
* Add format attribute to logger functions.florian2016-09-041-14/+27
* No need for SRCS, identd.c is deduced from PROG and make(1) rules.jca2016-02-011-2/+1
* Fix pledge request to allow for setgroups.jca2015-10-241-2/+2
* Pledge support for the parent/resolver in identd(8).doug2015-10-161-1/+14
* avoid ioctl FIONBIO by passing SOCK_NONBLOCK to the things we getdlg2015-08-201-14/+7
* ignore SIGPIPE so we can handle the write(2) failures.dlg2015-08-201-2/+9
* consider the default failure handling for errors on socket operations todlg2015-08-041-6/+13
* f the parent builts up a list of replies for the child, it helpsdlg2015-03-271-1/+4
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-2/+3
* Use errx() after getpwnam() failure since errno may not be set.claudio2014-07-131-2/+2
* Cleanup of getopt argument: -p is not supported anymore.tobias2014-07-081-2/+2
* the return from asprintf does NOT include the space used by thedlg2014-01-071-2/+2
* get bytes off the wire as unsigned char so we can pass them todlg2013-11-211-2/+2
* handle lack of prototypederaadt2013-11-121-2/+2
* no need for netinet/ip_var.h (and friends)deraadt2013-10-241-2/+1
* implement -H, which hides existing and non-existent users, as well asokan2013-07-172-10/+21
* add -h to usage();jmc2013-04-291-2/+2
* implement -h from libexec/identd, which hides usernames/uids.dlg2013-04-292-12/+55
* support src/libexec/identd's -e option in src/usr.sbin/identd, ok dlg@sthen2013-04-232-9/+22
* sizeof(&foo) isnt as good as sizeof(foo).dlg2013-04-231-3/+3
* use stat to see if ~/.noident is there to avoid reimplementing a securitydlg2013-04-231-15/+5
* i copied too much from the tftpd manpage. identd doesnt take a directorydlg2013-04-231-2/+1
* fix usage to reflect the currently accepted getopt things.dlg2013-04-231-3/+3
* i forgot to add -n and -N to the synopsisdlg2013-04-231-2/+2
* remove support for specifying which port you want to run on. there's nodlg2013-04-232-16/+3
* add support for returning uids instead of usernames via -n, like libexecdlg2013-04-232-4/+26
* add support for -N as per libexec/identd. this lets users putdlg2013-04-232-12/+66
* handle ENOBUFS on the SEQPACKET socketpair between the child and the parentdlg2013-04-221-18/+44
* kill redundant prototypeflorian2013-04-051-2/+1
* 7 #include which are not neededderaadt2013-03-201-8/+2
* a tiny bit of knf; mostly whitespacederaadt2013-03-201-19/+11
* dont need to event_add the parent to child writing events twice. especiallydlg2013-03-191-3/+1
* make the arg name for -t consistent, and add STANDARDS;jmc2013-03-181-3/+11
* jmc pointed out i didnt replace the placeholders with the year and my name.dlg2013-03-181-2/+2
* whitespace fixes. no functional changedlg2013-03-181-8/+8
* limit the client to 256 bytes of input. if they send too much we just closedlg2013-03-181-1/+15
* switch from having a timeout after every read/write for the clientdlg2013-03-181-61/+43
* handle EMFILE/ENFILE from accept by disabling handling of events on thedlg2013-03-181-7/+28
* this is a new identd daemon to replace the libexec one that can be rundlg2013-03-183-0/+1153