moved conn_destroy to conn.c

This commit is contained in:
7u83 2022-08-14 14:15:18 +02:00
parent 85f79eac6a
commit 5f16ed5455
3 changed files with 22 additions and 45 deletions

View File

@ -179,7 +179,6 @@ MISCSRC=\
capwap_strings_state.c\
capwap_strings_vendor.c\
conn_create_noq.c\
conn_destroy.c\
connlist.c\
conn_prepare_image_data_request.c\
cw_decode_msg.c \
@ -211,6 +210,7 @@ MISCSRC=\
# conn_send_request.c\
# cw_put_msg.c\
# conn_process_packet.c\
# conn_destroy.c\
DTLSSRC+=\
dtls_bio.c\

View File

@ -938,3 +938,24 @@ int cw_read_messages(struct cw_Conn *conn)
errno = EAGAIN;
return -1;
}
/**
* Destroy a conn object
* @param object to destroy
*/
void conn_destroy(struct cw_Conn * conn)
{
if (conn->fragman)
fragman_destroy(conn->fragman);
if (conn->q)
free (conn->q);
if (conn->msg_callbacks)
mavl_destroy(conn->msg_callbacks);
free(conn);
}

View File

@ -1,44 +0,0 @@
/*
This file is part of actube.
actube is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
libcapwap is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file
* @brief Implements conn_destroy
*/
#include <stdlib.h>
#include "conn.h"
/**
* Destroy a conn object
* @param object to destroy
*/
void conn_destroy(struct cw_Conn * conn)
{
if (conn->fragman)
fragman_destroy(conn->fragman);
if (conn->q)
free (conn->q);
if (conn->msg_callbacks)
mavl_destroy(conn->msg_callbacks);
free(conn);
}