moved conn_destroy to conn.c
This commit is contained in:
parent
85f79eac6a
commit
5f16ed5455
@ -179,7 +179,6 @@ MISCSRC=\
|
|||||||
capwap_strings_state.c\
|
capwap_strings_state.c\
|
||||||
capwap_strings_vendor.c\
|
capwap_strings_vendor.c\
|
||||||
conn_create_noq.c\
|
conn_create_noq.c\
|
||||||
conn_destroy.c\
|
|
||||||
connlist.c\
|
connlist.c\
|
||||||
conn_prepare_image_data_request.c\
|
conn_prepare_image_data_request.c\
|
||||||
cw_decode_msg.c \
|
cw_decode_msg.c \
|
||||||
@ -211,6 +210,7 @@ MISCSRC=\
|
|||||||
# conn_send_request.c\
|
# conn_send_request.c\
|
||||||
# cw_put_msg.c\
|
# cw_put_msg.c\
|
||||||
# conn_process_packet.c\
|
# conn_process_packet.c\
|
||||||
|
# conn_destroy.c\
|
||||||
|
|
||||||
DTLSSRC+=\
|
DTLSSRC+=\
|
||||||
dtls_bio.c\
|
dtls_bio.c\
|
||||||
|
@ -938,3 +938,24 @@ int cw_read_messages(struct cw_Conn *conn)
|
|||||||
errno = EAGAIN;
|
errno = EAGAIN;
|
||||||
return -1;
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -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);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user