From 64cc20893f67e89f2781ff0fee8fb70464abb4f3 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Sat, 28 Nov 2009 02:29:33 -0500 Subject: [PATCH] As an add-on to #5, warn against using ssl_listener in production. --- eventlet/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlet/api.py b/eventlet/api.py index 445b134..e88bcf8 100644 --- a/eventlet/api.py +++ b/eventlet/api.py @@ -43,7 +43,7 @@ def tcp_listener(address, backlog=50): def ssl_listener(address, certificate, private_key): """Listen on the given (ip, port) *address* with a TCP socket that - can do SSL. + can do SSL. Primarily useful for unit tests, don't use in production. *certificate* and *private_key* should be the filenames of the appropriate certificate and private key files to use with the SSL socket.