We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2629979 commit c8c290aCopy full SHA for c8c290a
src/node_internals.h
@@ -39,11 +39,6 @@
39
#include <string>
40
#include <vector>
41
42
-// Custom constants used by both node_constants.cc and node_zlib.cc
43
-#define Z_MIN_WINDOWBITS 8
44
-#define Z_MAX_WINDOWBITS 15
45
-#define Z_DEFAULT_WINDOWBITS 15
46
-
47
struct sockaddr;
48
49
namespace node {
src/node_zlib.cc
@@ -71,6 +71,9 @@ namespace {
71
#define Z_MIN_LEVEL -1
72
#define Z_MAX_LEVEL 9
73
#define Z_DEFAULT_LEVEL Z_DEFAULT_COMPRESSION
74
+#define Z_MIN_WINDOWBITS 8
75
+#define Z_MAX_WINDOWBITS 15
76
+#define Z_DEFAULT_WINDOWBITS 15
77
78
#define ZLIB_ERROR_CODES(V) \
79
V(Z_OK) \
0 commit comments