summaryrefslogtreecommitdiffstats
path: root/lib/libutil/imsg.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Make a few internal symbols static and add a Symbols.map version scriptkettenis2017-12-141-3/+3
* Use freezero(3) for the imsg framework in imsg_free(3) and ibuf_free(3).reyk2017-04-111-2/+2
* Use C99 types (uint32_t) instead of BSD (u_int32_t) - the former arenicm2017-03-241-9/+9
* Add a cast to silence a compiler warning by clang on FreeBSD.tb2015-12-091-2/+2
* Do not loop on EAGAIN in imsg_read(). Better to return the error to theclaudio2015-12-051-6/+4
* Remove three NULL-checks before free(). ok millert@mmcc2015-11-271-3/+2
* Handle malloc(0) returning NULL (which can happen on some othernicm2015-07-191-2/+4
* Use memset instead of bzero for better portability.nicm2015-07-121-5/+5
* bzero cmsgbuf before using it, silences valgrind warnings.brynet2015-07-031-1/+2
* The correct semantic is to check msgbuf_write() for <= 0, not just < 0.reyk2015-06-111-2/+2
* sys/types.h rather than sys/param.h, where applicable. avoid overreach.deraadt2014-06-301-2/+2
* constify data parameter in imsg_add() and imsg_compose()eric2013-12-261-3/+3
* fix memleak in imsg_read() when hitting the fd reserve checkgilles2013-02-011-1/+2
* Fix a purely theoretical NULL-pointer dereference in the case that wereyk2012-12-191-2/+2
* in imsg_read() avoid calling recvmsg() if we detect that we will be shortgilles2012-06-021-13/+43
* Move imsg into libutil and add a man page.nicm2010-05-261-0/+271