Help for this page

Select Code to Download


  1. or download this
    if( $tmp > 0 ) {
        $sip_response .= "$line\n";
    }
    
  2. or download this
    my $sip_response = $response; # Make a copy of the response.
    if( $sip_response =~ s{^[^\n]+}[200 SIP/2.0 OK] ) {
    ...
    } else {
        die "Didn't understand the response: $response\n";
    }