From bf3b492f3eda79a5b492a87750b26d4228777601 Mon Sep 17 00:00:00 2001 From: eater Date: Sun, 13 Aug 2017 18:19:51 +0200 Subject: Add SSL support --- lib/IRC/Client/Server.pm6 | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/IRC/Client/Server.pm6') diff --git a/lib/IRC/Client/Server.pm6 b/lib/IRC/Client/Server.pm6 index 2ed5d69..2952869 100644 --- a/lib/IRC/Client/Server.pm6 +++ b/lib/IRC/Client/Server.pm6 @@ -4,6 +4,8 @@ has @.channels where .all ~~ Str|Pair; has @.nick where .all ~~ Str; has @.alias where .all ~~ Str|Regex; has Int $.port where 0 <= $_ <= 65535; +has Bool $.ssl; +has Str $.ca-file; has Str $.label; has Str $.host; has Str $.password; -- cgit v1.1