1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00
This commit is contained in:
Andy Green 2020-06-10 19:07:38 +01:00
parent 280584ff8f
commit ad5a4f7040
2 changed files with 3 additions and 2 deletions

View file

@ -71,7 +71,7 @@
"platforms": "windows-10/x86_64-amd/msvc, freertos-linkit/arm32-m4-mt7697-usi/gcc, linux-ubuntu-2004/aarch64-a72-bcm2711-rpi4/gcc, freertos-espidf/xl6-esp32/gcc, linux-fedora-32/riscv64-virt/gcc, windows-10/x86_64-amd/mingw32, windows-10/x86_64-amd/mingw64"
},
"default-examples-openssl-v3": {
"cmake": "-DLWS_OPENSSL_LIBRARIES=\"/usr/local/src/openssl/v3/usr/local/lib64/libssl.a;/usr/local/src/openssl/v3/usr/local/lib64/libcrypto.a\" -DLWS_OPENSSL_INCLUDE_DIRS=\"/usr/local/src/openssl/v3/usr/local/include/\" -DLWS_WITH_MINIMAL_EXAMPLES=1",
"cmake": "-DLWS_OPENSSL_LIBRARIES=\"/usr/local/src/openssl/v3/usr/local/lib64/libssl.a;/usr/local/src/openssl/v3/usr/local/lib64/libcrypto.a\" -DLWS_OPENSSL_INCLUDE_DIRS=\"/usr/local/src/openssl/v3/usr/local/include/\" -DLWS_WITH_MINIMAL_EXAMPLES=1 -DLWS_WITH_GENCRYPTO=1",
"platforms": "none,linux-fedora-32/x86_64-amd/gcc"
},
"default-examples-boringssl": {

View file

@ -133,7 +133,8 @@ lws_ss_timeout_sul_check_cb(lws_sorted_usec_list_t *sul)
{
lws_ss_handle_t *h = lws_container_of(sul, lws_ss_handle_t, sul);
lwsl_err("%s: retrying ss h %p (%s) after backoff\n", __func__, h, h->policy->streamtype);
lwsl_notice("%s: retrying ss h %p (%s) after backoff\n", __func__, h,
h->policy->streamtype);
/* we want to retry... */
h->seqstate = SSSEQ_DO_RETRY;