summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-11-21ldapd is also different to other imsg daemons.Claudio Jeker
2024-11-21Convert various reyk proc.c daemons over to new imsgbuf_init andClaudio Jeker
2024-11-21Convert simple stuff in usr.sbin over to new imsgbuf_init behaviourClaudio Jeker
2024-11-21Convert sbin and usr.bin to check for imsgbuf_init failure and addClaudio Jeker
2024-11-21At least make this rotting version of lpd compile again.Claudio Jeker
2024-11-21Convert session.c to use the new msgbuf reader API.Claudio Jeker
2024-11-21Teach mrt_dump_bgp_msg() to use ibufsClaudio Jeker
2024-11-21Pass the message to bgp_fsm as argument instead of stashing it in rptr.Claudio Jeker
2024-11-21Kill the bgp_msg struct and instead pass the type to session_sendmsg()Claudio Jeker
2024-11-21Convert rtr_proto to use new msgbuf reader API.Claudio Jeker
2024-11-21Rewrite the rpki-client io read handling using the new ibuf_read API.Claudio Jeker
2024-11-21Remove the imsgbuf_read_nofd() hack since the imsgbuf APIClaudio Jeker
2024-11-21Replace imsgbuf_read_nofd() hack with the new imsgbuf API.Claudio Jeker
2024-11-21Adjust rpki-client regress to new msgbuf APIClaudio Jeker
2024-11-21Adjust rpki-client to new msgbuf APIClaudio Jeker
2024-11-21Adjust bgpd to the new msgbuf APIClaudio Jeker
2024-11-21Adjust ldpd to the msgbuf change that turns the struct opaqueClaudio Jeker
2024-11-21Adjust rpki-client to the new msgbuf_write apiClaudio Jeker
2024-11-21Adjust bgpd to the new msgbuf_write / ibuf_write APIClaudio Jeker
2024-11-21Adjust to new msgbuf_write/ibuf_write API and use ibuf_write sinceClaudio Jeker
2024-11-21Do not abuse struct ibuf_read instead define local struct with the same fields.Claudio Jeker
2024-11-21Do not abuse struct ibuf_read for internal bits. Just define an own struct.Claudio Jeker
2024-11-21s/ibuf_add_buf/ibuf_add_ibuf/Claudio Jeker
2024-11-21Unify error reporting in various control programs.Claudio Jeker
2024-11-21Only ldapd tried to handle fd exhaustion during imsg fd passing.Claudio Jeker
2024-11-21Convert vmd over to new imsgbuf_read behaviour and fix some lurkingClaudio Jeker
2024-11-21Try to handle the dumpster fire called constraint.c a bit better.Claudio Jeker
2024-11-21Simple bits of converting ntpd over to the new imsgbuf_read behaviour.Claudio Jeker
2024-11-21Implement the recv_imsg/read_message function in the correct way.Claudio Jeker
2024-11-21Convert radiusd to new imsgbuf_read behaviour.Claudio Jeker
2024-11-21Convert npppd and npppctl over to new imsgbuf_read behaviour.Claudio Jeker
2024-11-21No need to handle EAGAIN anymore.Claudio Jeker
2024-11-21bgpd and smtpd include their own imsgbuf_read_nofd() implementation.Claudio Jeker
2024-11-21Convert the common imsgbuf_read calls to the post EAGAIN world.Claudio Jeker
2024-11-21Just use the new better imsg APIClaudio Jeker
2024-11-21Use msgbuf_queuelen() where approriateClaudio Jeker
2024-11-21Use imsgbuf_queuelen() instead of accessing the w.queue member.Claudio Jeker
2024-11-21Use imsgbuf_clear() where appropriate instead of msgbuf_clear().Claudio Jeker
2024-11-21Rename imsg_init, imsg_clear, imsg_read, imsg_write and imsg_flush toClaudio Jeker
2024-11-21Convert imsg_write() callers to the new simplified return logic.Claudio Jeker
2024-11-21Convert imsg_write() callers to the new simplified return logic.Claudio Jeker
2024-11-21Convert ibuf_write() callers to new simplified return logic.Claudio Jeker
2024-11-21Convert msgbuf_write() callers to the new return logic.Claudio Jeker
2024-11-21Use ibuf_write() to send BGP messages to peers instead of msgbuf_write().Claudio Jeker
2024-11-21Introduce imsg_write() and use it instead of msgbuf_write().Claudio Jeker
2024-11-21Use imsg_flush() instead of implementing the same by hand.Claudio Jeker
2024-11-21imsg_flush no longer returns EAGAIN. Simplify proc_flush_imsg() accordingly.Claudio Jeker
2024-11-21ibuf_get_string() was added to the ibuf API, remove local versionClaudio Jeker
2024-11-21Update ibuf and imsg manpage to include all new functions.Claudio Jeker
2024-11-21Add ibuf_read and msgbuf_read to read from a socket and msgbuf_getClaudio Jeker