View | Details | Raw Unified | Return to bug 26897
Collapse All | Expand All

(-)a/C4/SIP/SIPServer.pm (-4 / +3 lines)
Lines 308-316 sub sip_protocol_loop { Link Here
308
        my $previous_alarm = alarm($timeout);
308
        my $previous_alarm = alarm($timeout);
309
309
310
        while ( my $inputbuf = read_request() ) {
310
        while ( my $inputbuf = read_request() ) {
311
            if ( !defined $inputbuf ) {
311
312
                return;    #EOF
312
            next unless defined $inputbuf;
313
            }
313
314
            alarm($timeout);
314
            alarm($timeout);
315
315
316
            unless ($inputbuf) {
316
            unless ($inputbuf) {
317
- 

Return to bug 26897