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

(-)a/C4/SIP/SIPServer.pm (-1 / +3 lines)
Lines 351-356 sub read_request { Link Here
351
      my $raw_length;
351
      my $raw_length;
352
      local $/ = "\015";
352
      local $/ = "\015";
353
353
354
      # SIP connections might be active for weeks, clear L1 cache on every request
355
      Koha::Caches->flush_L1_caches();
356
354
    # proper SPEC: (octal) \015 = (hex) x0D = (dec) 13 = (ascii) carriage return
357
    # proper SPEC: (octal) \015 = (hex) x0D = (dec) 13 = (ascii) carriage return
355
      my $buffer = <STDIN>;
358
      my $buffer = <STDIN>;
356
      if ( defined $buffer ) {
359
      if ( defined $buffer ) {
357
- 

Return to bug 26871