acl/lib_acl_cpp/samples/ssl/https_request/t.sh
shuxin   zheng 7af9d5dec0 test ssl SNI
2020-07-02 15:44:44 +08:00

17 lines
633 B
Bash
Executable File

#!/bin/sh
os=$(echo `uname -s`)
if [ $os == 'Darwin' ]; then
./https_request -f "../libmbedtls_all.dylib" -s www.sina.com.cn:443 -S
echo ""
./https_request -f "../libmbedtls_all.dylib" -s www.baidu.com:443 -S
echo ""
./https_request -f "../libmbedtls_all.dylib" -s echo.websocket.org:443 -S
else
./https_request -f "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -s www.sina.com.cn:443 -S
echo ""
./https_request -f "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -s www.baidu.com:443 -S
echo ""
./https_request -f "../libmbedcrypto.so;../libmbedx509.so;../libmbedtls.so" -s echo.websocket.org:443 -S
fi