1
0
Fork 0
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:
David Galeano 2013-01-10 10:18:17 +08:00 committed by Andy Green
parent f177f2a15e
commit 1aad881819

View file

@ -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;