From 22c6422f47a8d2d80e10d482a08ca258a585dd14 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 29 Dec 2005 02:12:32 +0000 Subject: [PATCH] plugins/Network: Actually parse the option list and set an ssl variable. --- plugins/Network/plugin.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/Network/plugin.py b/plugins/Network/plugin.py index f280f2382..b7a5942d9 100644 --- a/plugins/Network/plugin.py +++ b/plugins/Network/plugin.py @@ -65,6 +65,10 @@ class Network(callbacks.Plugin): # quite sure what to do about it. except callbacks.Error: pass + ssl = False + for (opt, arg) in opts: + if opt == 'ssl': + ssl = True if server: if ':' in server: (server, port) = server.split(':')