diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-10 10:35:55 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-01-10 10:35:55 +0000 |
| commit | 9dafc75bb51c0f350330277a2e96b04f5a1c73b3 (patch) | |
| tree | d00d225400b981648d362e4c3bb56b46c0608b7c /src/libskabus/skabus_pub_end.c | |
| parent | 4a14a6b86a4a3c5ab8bc36e4c417a6783dfab463 (diff) | |
| download | skabus-9dafc75bb51c0f350330277a2e96b04f5a1c73b3.tar.gz | |
Add pub library and daemon
Diffstat (limited to 'src/libskabus/skabus_pub_end.c')
| -rw-r--r-- | src/libskabus/skabus_pub_end.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libskabus/skabus_pub_end.c b/src/libskabus/skabus_pub_end.c new file mode 100644 index 0000000..579e83e --- /dev/null +++ b/src/libskabus/skabus_pub_end.c @@ -0,0 +1,25 @@ +/* ISC license. */ + +#include <skalibs/alloc.h> +#include <skalibs/djbunix.h> +#include <skalibs/genalloc.h> +#include <skalibs/skaclient.h> + +#include <skabus/pub.h> + +static void skabus_pub_cltinfo_free (skabus_pub_cltinfo_t *p) +{ + fd_close(p->fd) ; + if (p->nfds) + { + for (size_t i = 0 ; i < p->nfds ; i++) fd_close(p->fds[i]) ; + alloc_free(p->fds) ; + } +} + +void skabus_pub_end (skabus_pub_t *a) +{ + skaclient_end(&a->connection) ; + genalloc_deepfree(skabus_pub_cltinfo_t, &a->info, &skabus_pub_cltinfo_free) ; + a->head = 0 ; +} |
