Ignore:
Timestamp:
11/02/09 04:19:58 (2 years ago)
Author:
submersible_toaster
Message:

effectivly replace 02_main by 03_multicast , roll version

Location:
trunk/IO-Socket-Multicast
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/IO-Socket-Multicast/lib/IO/Socket/Multicast.pm

    r6536 r9008  
    2121    mcast_send 
    2222  ); 
    23   $VERSION = '1.07_02'; 
     23  $VERSION = '1.08'; 
    2424  @ISA = qw( 
    2525    Exporter 
  • trunk/IO-Socket-Multicast/t/03_multicast.t

    r9007 r9008  
    3030  # What the hell ? Dropping an unsubscribed mcast group on win32 fails to fail? 
    3131} else { 
    32   ok(!$s->mcast_drop('225.0.1.1'), 'Drop unsbuscribed group returns false'  ); 
     32  ok(!$s->mcast_drop('225.0.1.1'), 'Drop unsubscribed group returns false'  ); 
    3333} 
    3434 
     
    6262  my @ifs = $s->if_list; 
    6363  foreach (reverse @ifs) { 
    64     diag( $_ ); 
    65     diag( $s->if_flags($_) ); 
    6664     
    6765    next unless $s->if_flags($_) & IFF_MULTICAST(); 
    68     diag( $_ .' Is multicast' ); 
    6966    next unless $s->if_flags($_) & IFF_RUNNING(); 
    70     diag( $_ . '  Is running' ); 
    7167    next unless $s->if_addr($_);  
    7268    return $_; 
Note: See TracChangeset for help on using the changeset viewer.