We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c9cd3e commit d6512b3Copy full SHA for d6512b3
1 file changed
src/wolfssl/_build_wolfssl.py
@@ -150,10 +150,10 @@ def make_flags(prefix):
150
flags.append("--enable-opensslextra")
151
cflags.append("-DKEEP_PEER_CERT")
152
153
- # websocket-client test server (echo.websocket.org) only supports
+ # Note: websocket-client test server (echo.websocket.org) only supports
154
# TLS 1.2 with TLS_RSA_WITH_AES_128_CBC_SHA
155
- # We must enable static RSA suites here
156
- cflags.append("-DWOLFSSL_STATIC_RSA")
+ # If compiling for use with websocket-client, must enable static RSA suites.
+ # cflags.append("-DWOLFSSL_STATIC_RSA")
157
158
joined_flags = " ".join(flags)
159
joined_cflags = " ".join(cflags)
0 commit comments