Skip to content
Snippets Groups Projects
Unverified Commit 6a13c631 authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov Committed by GitHub
Browse files

Merge pull request #9 from kelvinblockchain/feature-1505

add dap_stream_delete()
parents a04e250d 40b89a0d
No related branches found
No related tags found
No related merge requests found
...@@ -276,6 +276,17 @@ dap_stream_t * stream_new(dap_http_client_t * sh) ...@@ -276,6 +276,17 @@ dap_stream_t * stream_new(dap_http_client_t * sh)
return ret; return ret;
} }
void dap_stream_delete(dap_stream_t * a_stream)
{
if(a_stream == NULL)
return;
size_t i;
for(i = 0; i < a_stream->channel_count; i++)
dap_stream_ch_delete(a_stream->channel[i]);
if(a_stream->session)
dap_stream_session_close(a_stream->session->id);
free(a_stream);
}
/** /**
* @brief dap_stream_new_es * @brief dap_stream_new_es
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment