SashaXser
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/goodbyedpi.c
|
|
@ -426,8 +426,9 @@ static inline void change_window_size(const PWINDIVERT_TCPHDR ppTcpHdr, unsigned |
|
|
|
} |
|
|
|
|
|
|
|
/* HTTP method end without trailing space */ |
|
|
|
static PVOID find_http_method_end(const char *pkt, size_t pkt_length, unsigned int http_frag, int *is_fragmented) { |
|
|
|
static PVOID find_http_method_end(const char *pkt, unsigned int http_frag, int *is_fragmented) { |
|
|
|
unsigned int i; |
|
|
|
unsigned int pkt_length = strlen(pkt); |
|
|
|
for (i = 0; i<(sizeof(http_methods) / sizeof(*http_methods)); i++) { |
|
|
|
unsigned int method_length = strlen(http_methods[i]); |
|
|
|
if (strncasecmp(pkt, http_methods[i], method_length) == 0) { |
|
|
|