Skip to content
Snippets Groups Projects
Commit c36dea21 authored by Anatolii Kurotych's avatar Anatolii Kurotych
Browse files

[+] seq_id field to dap_stream

parent c17f6172
No related branches found
No related tags found
No related merge requests found
...@@ -268,6 +268,7 @@ dap_stream_t * stream_new(dap_http_client_t * sh) ...@@ -268,6 +268,7 @@ dap_stream_t * stream_new(dap_http_client_t * sh)
ret->conn = sh->client; ret->conn = sh->client;
ret->conn_http=sh; ret->conn_http=sh;
ret->buf_defrag_size = 0; ret->buf_defrag_size = 0;
ret->seq_id = 0;
ret->conn->_internal=ret; ret->conn->_internal=ret;
......
...@@ -83,6 +83,7 @@ typedef struct dap_stream { ...@@ -83,6 +83,7 @@ typedef struct dap_stream {
size_t frame_sent; // Frame counter size_t frame_sent; // Frame counter
size_t seq_id;
size_t stream_size; size_t stream_size;
} dap_stream_t; } dap_stream_t;
......
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