Experimental: Fix all signed/unsigned warnings

This commit is contained in:
Alex Hultman
2020-11-30 23:00:36 +01:00
parent 2530872a1b
commit ad0a961430
15 changed files with 58 additions and 54 deletions
+2 -2
View File
@@ -57,11 +57,11 @@ public:
bool noMark = false;
/* Good 16k for SSL perf. */
static const int CORK_BUFFER_SIZE = 16 * 1024;
static const unsigned int CORK_BUFFER_SIZE = 16 * 1024;
/* Cork data */
char *corkBuffer = new char[CORK_BUFFER_SIZE];
int corkOffset = 0;
unsigned int corkOffset = 0;
void *corkedSocket = nullptr;
/* Per message deflate data */