We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! For IRC proxy services (like ZNC) with self signed ssl certificates maybe it's make a sense to disable ssl versification ?
Right now I do quick and dirty patch:
diff --git a/lib/IRC/Client.rakumod b/lib/IRC/Client.rakumod index 044ec02..c585106 100644 --- a/lib/IRC/Client.rakumod +++ b/lib/IRC/Client.rakumod @@ -522,9 +522,10 @@ method !connect-socket($server --> Nil) { ?? IO::Socket::Async::SSL.connect( $server.host, $server.port, - ca-file => $server.ca-file + ca-file => $server.ca-file, + :insecure ) - !! IO::Socket::Async.connect($server.host, $server.port); + !! IO::Socket::Async.connect($server.host, $server.port, :insecure);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! For IRC proxy services (like ZNC) with self signed ssl certificates maybe it's make a sense to disable ssl versification ?
Right now I do quick and dirty patch:
The text was updated successfully, but these errors were encountered: