mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
Using size_t instead of int for deflate-frame offsets and length.
This commit is contained in:
parent
f177f2a15e
commit
1aad881819
1 changed files with 4 additions and 4 deletions
|
@ -6,10 +6,10 @@
|
|||
struct lws_ext_deflate_frame_conn {
|
||||
z_stream zs_in;
|
||||
z_stream zs_out;
|
||||
int buf_pre_used;
|
||||
int buf_pre_length;
|
||||
int buf_in_length;
|
||||
int buf_out_length;
|
||||
size_t buf_pre_used;
|
||||
size_t buf_pre_length;
|
||||
size_t buf_in_length;
|
||||
size_t buf_out_length;
|
||||
int compressed_out;
|
||||
unsigned char *buf_pre;
|
||||
unsigned char *buf_in;
|
||||
|
|
Loading…
Add table
Reference in a new issue