Topic: wolfssl_connect error -188 when connecting to a websocket server
I am trying to connect a secure websocket sever with wolfssl client example, I run client example like:
./build/examples/client/client -h xx.x.xxx.com -p 443 -c certs/client_cert.pem -k certs/client_key.pem -A certs/server_cert.pem
After I run this I got error says 'wolfSSL_connect error -188, ASN no signer error to confirm failure', which I assume that there is problem about server certificate which I gave as paramater with -A.
But I am sure that these certificate setup works with a python code like:
```
load_verify_locations(server_cert_path)
load_cert_chain(client_cert_path, client_key_path)
```
What am I missing?
P.S. I unfortunately cannot share the host address and the certificates.