Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Mojo::IOLoop::TLS

Name Mojo::IOLoop::TLS
Version
Located at /usr/local/share/perl5
File /usr/local/share/perl5/Mojo/IOLoop/TLS.pm
Is Core No
Search CPAN for this module Mojo::IOLoop::TLS
Documentation Mojo::IOLoop::TLS
Module Details Mojo::IOLoop::TLS


NAME

Mojo::IOLoop::TLS - Non-blocking TLS handshake


SYNOPSIS

  use Mojo::IOLoop::TLS;
  # Negotiate TLS
  my $tls = Mojo::IOLoop::TLS->new($old_handle);
  $tls->on(upgrade => sub ($tls, $new_handle) {...});
  $tls->on(error => sub ($tls, $err) {...});
  $tls->negotiate(server => 1, tls_version => 'TLSv1_2');
  # Start reactor if necessary
  $tls->reactor->start unless $tls->reactor->is_running;


DESCRIPTION

the Mojo::IOLoop::TLS manpage negotiates TLS for the Mojo::IOLoop manpage.


EVENTS

the Mojo::IOLoop::TLS manpage inherits all events from the Mojo::EventEmitter manpage and can emit the following new ones.

upgrade

  $tls->on(upgrade => sub ($tls, $handle) {...});

Emitted once TLS has been negotiated.

error

  $tls->on(error => sub ($tls, $err) {...});

Emitted if an error occurs during negotiation, fatal if unhandled.


ATTRIBUTES

the Mojo::IOLoop::TLS manpage implements the following attributes.

reactor

  my $reactor = $tls->reactor;
  $tls        = $tls->reactor(Mojo::Reactor::Poll->new);

Low-level event reactor, defaults to the reactor attribute value of the global the Mojo::IOLoop manpage singleton. Note that this attribute is weakened.


METHODS

the Mojo::IOLoop::TLS manpage inherits all methods from the Mojo::EventEmitter manpage and implements the following new ones.

can_tls

  my $bool = Mojo::IOLoop::TLS->can_tls;

True if the IO::Socket::SSL manpage 2.009+ is installed and TLS support enabled.

negotiate

  $tls->negotiate(server => 1, tls_version => 'TLSv1_2');
  $tls->negotiate({server => 1, tls_version => 'TLSv1_2'});

Negotiate TLS.

These options are currently available:

server
  server => 1

Negotiate TLS from the server-side, defaults to the client-side.

tls_ca
  tls_ca => '/etc/tls/ca.crt'

Path to TLS certificate authority file.

tls_cert
  tls_cert => '/etc/tls/server.crt'
  tls_cert => {'mojolicious.org' => '/etc/tls/mojo.crt'}

Path to the TLS cert file, defaults to a built-in test certificate on the server-side.

tls_key
  tls_key => '/etc/tls/server.key'
  tls_key => {'mojolicious.org' => '/etc/tls/mojo.key'}

Path to the TLS key file, defaults to a built-in test key on the server-side.

tls_options
  tls_options => {SSL_alpn_protocols => ['foo', 'bar'], SSL_verify_mode => 0x00, SSL_version => 'TLSv1_2'}

Additional options for the IO::Socket::SSL manpage.

new

  my $tls = Mojo::IOLoop::TLS->new($handle);

Construct a new the Mojo::IOLoop::Stream manpage object.


SEE ALSO

Mojolicious, the Mojolicious::Guides manpage, https://mojolicious.org.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2025