add a destroy API call for a server instance

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@105804 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-03-04 22:28:03 +00:00
parent cc55483858
commit 96e04792bd
5 changed files with 16 additions and 3 deletions

View File

@@ -446,3 +446,9 @@ void *ast_make_file_from_fd(void *data)
else
return ser;
}
struct ast_tcptls_server_instance *ast_tcptls_server_instance_destroy(struct ast_tcptls_server_instance *i)
{
ast_free(i);
return NULL;
}