AnyEvent-Handle-UDP

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.040     2013-08-29 13:04:30 Europe/Amsterdam
          Fix error handling in a number of places

0.039     2013-01-17 16:04:04 Europe/Amsterdam
          Hopefully really fixed for old perl+old Socket.pm
          Made connect_to actually work

0.038     2012-12-12 23:19:16 Europe/Amsterdam
          Fix {,r,w}timeout_reset to actually work
          Made it work with old perl+old Socket.pm
          Switch from Test::Exception to Test::Fatal

0.037     2012-11-15 00:29:31 Europe/Amsterdam
          Handle absence of IPv6 better (hopefully)

0.036     2012-06-06 19:23:18 Europe/Amsterdam
          Make fh an IO::Socket object
          Don't insist on port number in tests
          Refactor bind/connect logic

0.035     2012-05-02 23:15:17 Europe/Amsterdam

META.json  view on Meta::CPAN

            "Socket" : "0",
            "Symbol" : "0",
            "perl" : "5.006",
            "strict" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "IO::Socket::INET" : "0",
            "Test::Fatal" : "0",
            "Test::More" : "0.89"
         }
      }
   },
   "provides" : {
      "AnyEvent::Handle::UDP" : {
         "file" : "lib/AnyEvent/Handle/UDP.pm",
         "version" : "0.050"
      }
   },

META.yml  view on Meta::CPAN

---
abstract: 'client/server UDP handles for AnyEvent'
author:
  - 'Leon Timmermans <leont@cpan.org>'
build_requires:
  IO::Socket::INET: '0'
  Test::Fatal: '0'
  Test::More: '0.89'
configure_requires:
  Module::Build::Tiny: '0.034'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: AnyEvent-Handle-UDP

t/20-timeout.t  view on Meta::CPAN

#! perl

use strict;
use warnings FATAL => 'all';
use Test::More 0.89;
use Test::Fatal;

use AnyEvent::Handle::UDP;
use IO::Socket::INET;

alarm 12;

{
	my $cb = AE::cv;
	my $cb2 = AE::cv;
	my $server = AnyEvent::Handle::UDP->new(



( run in 0.835 second using v1.01-cache-2.11-cpan-54e63673c56 )