We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a28185b commit d26781dCopy full SHA for d26781d
2 files changed
examples/client.py
@@ -105,6 +105,9 @@ def main():
105
106
bind_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM, 0)
107
108
+ # enable debug, if native wolfSSL has been compiled with '--enable-debug'
109
+ wolfssl.WolfSSL.enable_debug()
110
+
111
context = wolfssl.SSLContext(get_method(args.v))
112
113
context.load_cert_chain(args.c, args.k)
examples/server.py
@@ -109,6 +109,9 @@ def main():
print("Server listening on port", bind_socket.getsockname()[1])
114
115
context = wolfssl.SSLContext(get_method(args.v), server_side=True)
116
117
0 commit comments