From a06c695fe3dd822d3e1af17326b6c15d6af9c6aa Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Tue, 25 Feb 2014 11:36:58 +0100 Subject: [PATCH] miniupnpd/asyncsendto: finalize_sendto() --- miniupnpd/asyncsendto.c | 22 ++++++++++++++++++++++ miniupnpd/asyncsendto.h | 3 +++ miniupnpd/miniupnpd.c | 24 ++++++++++++++++-------- 3 files changed, 41 insertions(+), 8 deletions(-) diff --git a/miniupnpd/asyncsendto.c b/miniupnpd/asyncsendto.c index faae87e..5cd2a3d 100644 --- a/miniupnpd/asyncsendto.c +++ b/miniupnpd/asyncsendto.c @@ -195,3 +195,25 @@ int try_sendto(fd_set * writefds) return 0; } +/* empty the list */ +void finalize_sendto(void) +{ + ssize_t n; + struct scheduled_send * elt; + struct scheduled_send * next; + /* TODO : improve with a select() and a short timeout */ + for(elt = send_list.lh_first; elt != NULL; elt = next) { + next = elt->entries.le_next; + syslog(LOG_DEBUG, "finalize_sendto(): %d bytes on socket %d", + (int)elt->len, elt->sockfd); + n = sendto(elt->sockfd, elt->buf, elt->len, elt->flags, + elt->dest_addr, elt->addrlen); + if(n < 0) { + syslog(LOG_WARNING, "sendto(): %m"); + } + /* remove from the list */ + LIST_REMOVE(elt, entries); + free(elt); + } +} + diff --git a/miniupnpd/asyncsendto.h b/miniupnpd/asyncsendto.h index 6afb322..60c04de 100644 --- a/miniupnpd/asyncsendto.h +++ b/miniupnpd/asyncsendto.h @@ -32,4 +32,7 @@ int try_sendto(fd_set * writefds); /* set writefds before select() */ int get_sendto_fds(fd_set * writefds, int * max_fd, const struct timeval * now); +/* empty the list */ +void finalize_sendto(void); + #endif diff --git a/miniupnpd/miniupnpd.c b/miniupnpd/miniupnpd.c index 9219e47..10667a7 100644 --- a/miniupnpd/miniupnpd.c +++ b/miniupnpd/miniupnpd.c @@ -2026,6 +2026,21 @@ main(int argc, char * * argv) } /* end of main loop */ shutdown: + /* send good-bye */ + if (GETFLAG(ENABLEUPNPMASK)) + { +#ifndef ENABLE_IPV6 + if(SendSSDPGoodbye(snotify, addr_count) < 0) +#else + if(SendSSDPGoodbye(snotify, addr_count * 2) < 0) +#endif + { + syslog(LOG_ERR, "Failed to broadcast good-bye notifications"); + } + } + /* try to send pending packets */ + finalize_sendto(); + /* close out open sockets */ while(upnphttphead.lh_first != NULL) { @@ -2065,14 +2080,6 @@ shutdown: if (GETFLAG(ENABLEUPNPMASK)) { -#ifndef ENABLE_IPV6 - if(SendSSDPGoodbye(snotify, addr_count) < 0) -#else - if(SendSSDPGoodbye(snotify, addr_count * 2) < 0) -#endif - { - syslog(LOG_ERR, "Failed to broadcast good-bye notifications"); - } #ifndef ENABLE_IPV6 for(i = 0; i < addr_count; i++) #else @@ -2081,6 +2088,7 @@ shutdown: close(snotify[i]); } + /* remove pidfile */ if(pidfilename && (unlink(pidfilename) < 0)) { syslog(LOG_ERR, "Failed to remove pidfile %s: %m", pidfilename);