Age | Commit message (Expand) | Author |
2019-07-03 | snprintf/vsnprintf return < 0 on error, rather than -1. | Theo de Raadt |
2018-01-05 | Remove useless <sys/socketvar.h> includes. | Martin Pieuchot |
2017-07-04 | consistently use the evtimer wrappers around the connection timeout. | David Gwynne |
2017-07-04 | include stdarg.h explicitly instead of relying on event.h to bring it in. | David Gwynne |
2017-05-26 | Sync the severity of the syslog_* functions shared between identd, slowcgi, | Florian Obser |
2017-04-18 | removed unused function; from Edgar Pettijohn | Theo de Raadt |
2017-04-16 | Different compilers and versions of compilers have different warnings. | Jonathan Gray |
2016-09-04 | Add format attribute to logger functions. | Florian Obser |
2016-02-01 | No need for SRCS, identd.c is deduced from PROG and make(1) rules. | Jeremie Courreges-Anglas |
2015-10-24 | Fix pledge request to allow for setgroups. | Jeremie Courreges-Anglas |
2015-10-16 | Pledge support for the parent/resolver in identd(8). | Doug Hogan |
2015-08-20 | avoid ioctl FIONBIO by passing SOCK_NONBLOCK to the things we get | David Gwynne |
2015-08-20 | ignore SIGPIPE so we can handle the write(2) failures. | David Gwynne |
2015-08-04 | consider the default failure handling for errors on socket operations to | David Gwynne |
2015-03-27 | f the parent builts up a list of replies for the child, it helps | David Gwynne |
2015-01-16 | Replace <sys/param.h> with <limits.h> and other less dirty headers where | Theo de Raadt |
2014-07-13 | Use errx() after getpwnam() failure since errno may not be set. | Claudio Jeker |
2014-07-08 | Cleanup of getopt argument: -p is not supported anymore. | Tobias Stoeckmann |
2014-01-07 | the return from asprintf does NOT include the space used by the | David Gwynne |
2013-11-21 | get bytes off the wire as unsigned char so we can pass them to | David Gwynne |
2013-11-12 | handle lack of prototype | Theo de Raadt |
2013-10-24 | no need for netinet/ip_var.h (and friends) | Theo de Raadt |
2013-07-17 | implement -H, which hides existing and non-existent users, as well as | Okan Demirmen |
2013-04-29 | add -h to usage(); | Jason McIntyre |
2013-04-29 | implement -h from libexec/identd, which hides usernames/uids. | David Gwynne |
2013-04-23 | support src/libexec/identd's -e option in src/usr.sbin/identd, ok dlg@ | Stuart Henderson |
2013-04-23 | sizeof(&foo) isnt as good as sizeof(foo). | David Gwynne |
2013-04-23 | use stat to see if ~/.noident is there to avoid reimplementing a security | David Gwynne |
2013-04-23 | i copied too much from the tftpd manpage. identd doesnt take a directory | David Gwynne |
2013-04-23 | fix usage to reflect the currently accepted getopt things. | David Gwynne |
2013-04-23 | i forgot to add -n and -N to the synopsis | David Gwynne |
2013-04-23 | remove support for specifying which port you want to run on. there's no | David Gwynne |
2013-04-23 | add support for returning uids instead of usernames via -n, like libexec | David Gwynne |
2013-04-23 | add support for -N as per libexec/identd. this lets users put | David Gwynne |
2013-04-22 | handle ENOBUFS on the SEQPACKET socketpair between the child and the parent | David Gwynne |
2013-04-05 | kill redundant prototype | Florian Obser |
2013-03-20 | 7 #include which are not needed | Theo de Raadt |
2013-03-20 | a tiny bit of knf; mostly whitespace | Theo de Raadt |
2013-03-19 | dont need to event_add the parent to child writing events twice. especially | David Gwynne |
2013-03-18 | make the arg name for -t consistent, and add STANDARDS; | Jason McIntyre |
2013-03-18 | jmc pointed out i didnt replace the placeholders with the year and my name. | David Gwynne |
2013-03-18 | whitespace fixes. no functional change | David Gwynne |
2013-03-18 | limit the client to 256 bytes of input. if they send too much we just close | David Gwynne |
2013-03-18 | switch from having a timeout after every read/write for the client | David Gwynne |
2013-03-18 | handle EMFILE/ENFILE from accept by disabling handling of events on the | David Gwynne |
2013-03-18 | this is a new identd daemon to replace the libexec one that can be run | David Gwynne |