mention disablePerMessageDeflate in the doc

This commit is contained in:
Benjamin Sergeant
2021-03-16 09:56:08 -07:00
parent cadb8336f2
commit 0813eb1788
12 changed files with 47 additions and 24 deletions

View File

@ -8,12 +8,12 @@
// mingw does not have those
#if defined(_WIN32) && defined(__GNUC__)
const char * inet_ntop(int af, const void * restrict src, char * restrict dst, socklen_t size)
const char* inet_ntop(int af, const void* restrict src, char* restrict dst, socklen_t size)
{
return nullptr;
}
int inet_pton(int af, const char * restrict src, void * restrict dst)
int inet_pton(int af, const char* restrict src, void* restrict dst)
{
return -1;
}