aboutsummaryrefslogblamecommitdiffstats
path: root/libaxl_detach.c
blob: c4a0a217857f636605bcfe479951cd0fcc856699 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}