aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Server.pm6
diff options
context:
space:
mode:
authorZoffix Znet <zoffixznet@users.noreply.github.com>2017-08-13 12:52:23 -0400
committerGitHub <noreply@github.com>2017-08-13 12:52:23 -0400
commit3772beb5bbb355405066fdd393f68ec80cbfe8a8 (patch)
treeb433e6d31341be5066603c44901cc5a56b3d50a9 /lib/IRC/Client/Server.pm6
parentae1a1b9df8a4a5aa2ac24797cb2795bae811ac56 (diff)
parentbf3b492f3eda79a5b492a87750b26d4228777601 (diff)
Merge pull request #46 from the-eater/add-ssl-support
Add SSL support
Diffstat (limited to 'lib/IRC/Client/Server.pm6')
-rw-r--r--lib/IRC/Client/Server.pm62
1 files changed, 2 insertions, 0 deletions
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;