Help for this page

Select Code to Download


  1. or download this
     $members{ $status->{'address'} = $member->{'port'}};
    
  2. or download this
      $members{ $status->{'address'}} = $member->{'port'};
    
  3. or download this
      $members{ $status}->{'enabled'} = $ENABLED_STATUS_MAP->{ $status->{'
    +enabled_status'} }
    
  4. or download this
      # Restructure the following line
      # $members{ $status}->{'enabled'} = $ENABLED_STATUS_MAP->{ $status->
    +{'enabled_status'} } 
    ...
      my $value= $ENABLED_STATUS_MAP->{ $status->{'enabled_status'} };
      warn "Assigning '$key'='$value' in results";
      $members{ $key }= $value;
    
  5. or download this
    
      # $members{ 'enabled' }= $ENABLED_STATUS_MAP->{ $status->{'enabled_s
    +tatus'} } 
    ...
      warn "Assigning '$key'='$value' in results";
      $members{ $key }= $value;