| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3872abd commit 2cee039
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | cmake_minimum_required(VERSION 3.5.1) | |
| 2 | 2 | cmake_policy(SET CMP0069 NEW) | |
| 3 | 3 | ||
| 4 | - project(llhttp VERSION 6.0.9) | ||
| 4 | + project(llhttp VERSION 6.0.10) | ||
| 5 | 5 | include(GNUInstallDirs) | |
| 6 | 6 | ||
| 7 | 7 | set(CMAKE_C_STANDARD 99) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,7 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | 4 | #define LLHTTP_VERSION_MAJOR 6 | |
| 5 | 5 | #define LLHTTP_VERSION_MINOR 0 | |
| 6 | - #define LLHTTP_VERSION_PATCH 9 | ||
| 6 | + #define LLHTTP_VERSION_PATCH 10 | ||
| 7 | 7 | ||
| 8 | 8 | #ifndef LLHTTP_STRICT_MODE | |
| 9 | 9 | # define LLHTTP_STRICT_MODE 0 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ const net = require('net'); | |||
| 36 | 36 | // Verify that the server listener is never called | |
| 37 | 37 | ||
| 38 | 38 | client.on('data', common.mustCall((chunk) => { | |
| 39 | - response += chunk.toString('utf-8'); | ||
| 39 | + response += chunk; | ||
| 40 | 40 | })); | |
| 41 | 41 | ||
| 42 | 42 | client.setEncoding('utf8'); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments