mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-23 17:37:33 +00:00
2f9bb7a30a
Add support for dynamically determining the CAs needed to validate server certificates. This allows you to avoid instantiating > 120 X.509 trusted CA certs and have them take up heap the whole time. Works for both openssl and mbedtls. See READMEs/README.jit-trust.md for the documentation You likely want the next patch for http redirect enhancements as well.
7 lines
220 B
Bash
Executable File
7 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget -O- https://ahrefs.com/blog/most-visited-websites/ | grep most-visited-websites-us | \
|
|
sed -E 's/class="column-2">/|/g' | tr '|' '\n' | \
|
|
sed 's/<.*//g' | grep -v Domain | grep -v Josh | sort | uniq
|
|
|