diff options
Diffstat (limited to '')
-rw-r--r-- | libaxl_detach.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libaxl_detach.c b/libaxl_detach.c new file mode 100644 index 0000000..c4a0a21 --- /dev/null +++ b/libaxl_detach.c @@ -0,0 +1,18 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +int +libaxl_detach(LIBAXL_CONNECTION *conn) +{ + int fd = conn->fd; + LIBAXL_CONTEXT *ctx; + while (conn->pending_out) { + ctx = conn->pending_out; + conn->pending_out = ctx->next_pending_out; + libaxl_context_free(ctx); + } + free(conn->in_buf); + free(conn->info_buf); + free(conn); + return fd; +} |