Help for this page

Select Code to Download


  1. or download this
     while (1){
    
                    my @event = $astman->read_response;
                    chomp(@event);
    
  2. or download this
    lock(%queue_changes);
    $event_id = int(rand(25000));
    %type = &event_hasher(\@event);
    
  3. or download this
    sub event_hasher{
            my @cur_event = @{$_[0]};
    ...
            }
            return %event_hash;
    }
    
  4. or download this
    $queue_changes{$event_id} = %type;
    
  5. or download this
    Sat Jan  9 21:10:50 2016
    1452391850.044984517
    ...
              'Status: 1',
              'Paused: 0'
            ];
    
  6. or download this
    Sat Jan  9 21:10:52 2016
    1452391852.284037579
    ...
              'Paused' => '0',
              'Membership' => 'dynamic'
            };
    
  7. or download this
    Queue Changes after Event Hashed:
    $VAR1 = {
    ...
                          'Location' => 'SIP/EXTENSION-XXXX'
                        }
            };
    
  8. or download this
    Sat Jan  9 21:10:52 2016
    1452391852.286708251
    ...
                          'Location' => 'SIP/EXTENSION-XXXX'
                        }
            };
    
  9. or download this
    perl -v
    
    ...
    Complete documentation for Perl, including FAQ lists, should be found 
    +on
    this system using "man perl" or "perldoc perl".  If you have access to
    + the
    Internet, point your browser at http://www.perl.org/, the Perl Home Pa
    +ge.