This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit class SMTPd; | |
use IO::Socket::Async::SSL; | |
has $.port; | |
has $.debug; | |
has $.raw; | |
has $.socket; | |
has $.tls; | |
has $.ssl; | |
has $.plain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit class SMTPd; | |
use IO::Socket::Async::SSL; | |
has $.port; | |
has $.debug; | |
has $.raw; | |
has $.socket; | |
has $.tls; | |
has $.ssl; | |
has $.plain; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Perl6::Grammar; | |
use Perl6::Actions; | |
use Perl6::Compiler; | |
class Perl6::DebugHooks { | |
has %!hooks; | |
has $!suspended; | |
method set_hook($name, $callback) { | |
$*W.add_object($callback); |