TCP-Rebuild

 view release on metacpan or  search on metacpan

lib/TCP/Rebuild.pm  view on Meta::CPAN


=cut

sub new {
  my $class    = shift;
  my %defaults = (
    separator	=> 0,
    filter	=> ''
  );

  my $self = bless { %defaults, @_ } => $class;

  $self->{connections} = {};

  return $self;
}

sub _end_connection {
  my ($self, $key, $conn, $message) = @_;

  my $connections = $self->{connections};

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.837 second using v1.00-cache-2.02-grep-82fe00e-cpan-9e6bc14194b6 )