From c905c1b3adda7adaf53acb44de4c9847cb19862c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 20 Sep 2014 13:24:11 +0100 Subject: [PATCH] udp: Use for notify lists This makes the code clearer, shorter and more typesafe. Signed-off-by: Ian Jackson --- secnet.h | 2 ++ udp.c | 32 +++++++++++++------------------- 2 files changed, 15 insertions(+), 19 deletions(-) diff --git a/secnet.h b/secnet.h index 8a60ee3..cd2ea51 100644 --- a/secnet.h +++ b/secnet.h @@ -19,6 +19,8 @@ #include #include +#include + #define MAX_PEER_ADDRS 5 /* send at most this many copies; honour at most that many addresses */ diff --git a/udp.c b/udp.c index b57c85c..03025c7 100644 --- a/udp.c +++ b/udp.c @@ -30,11 +30,12 @@ static comm_request_notify_fn request_notify; static comm_release_notify_fn release_notify; static comm_sendmsg_fn udp_sendmsg; -struct notify_list { +struct comm_notify_entry { comm_notify_fn *fn; void *state; - struct notify_list *next; + LIST_ENTRY(comm_notify_entry) entry; }; +LIST_HEAD(comm_notify_list, comm_notify_entry) notify; #define MAX_SOCKETS 3 /* 2 ought to do really */ @@ -51,7 +52,7 @@ struct udp { struct udpsock socks[MAX_SOCKETS]; string_t authbind; struct buffer_if *rbuf; - struct notify_list *notify; + struct comm_notify_list notify; bool_t use_proxy; union iaddr proxy; }; @@ -91,7 +92,7 @@ static void udp_afterpoll(void *state, struct pollfd *fds, int nfds) struct udp *st=state; union iaddr from; socklen_t fromlen; - struct notify_list *n; + struct comm_notify_entry *n; bool_t done; int rv; int i; @@ -135,7 +136,7 @@ static void udp_afterpoll(void *state, struct pollfd *fds, int nfds) ca.ia=from; ca.ix=i; done=False; - for (n=st->notify; n; n=n->next) { + LIST_FOREACH(n, &st->notify, entry) { if (n->fn(n->state, st->rbuf, &ca)) { done=True; break; @@ -165,32 +166,24 @@ static void udp_afterpoll(void *state, struct pollfd *fds, int nfds) static void request_notify(void *commst, void *nst, comm_notify_fn *fn) { struct udp *st=commst; - struct notify_list *n; + struct comm_notify_entry *n; n=safe_malloc(sizeof(*n),"request_notify"); n->fn=fn; n->state=nst; - n->next=st->notify; - st->notify=n; + LIST_INSERT_HEAD(&st->notify, n, entry); } static void release_notify(void *commst, void *nst, comm_notify_fn *fn) { struct udp *st=commst; - struct notify_list *n, **p, *t; + struct comm_notify_entry *n, *t; /* XXX untested */ - p=&st->notify; - for (n=st->notify; n; ) - { + LIST_FOREACH_SAFE(n, &st->notify, entry, t) { if (n->state==nst && n->fn==fn) { - t=n; - *p=n->next; - n=n->next; - free(t); - } else { - p=&n->next; - n=n->next; + LIST_REMOVE(n, entry); + free(n); } } } @@ -354,6 +347,7 @@ static list_t *udp_apply(closure_t *self, struct cloc loc, dict_t *context, st->ops.sendmsg=udp_sendmsg; st->ops.addr_to_string=addr_to_string; st->use_proxy=False; + LIST_INIT(&st->notify); item=list_elem(args,0); if (!item || item->type!=t_dict) { -- 2.30.2