1# test that 2 seconds timeout does not occur while server writes for 4 seconds 2 3use strict; 4use warnings; 5 6our %args = ( 7 client => { 8 func => \&http_client, 9 len => 5, 10 method => "GET", 11 timefile => "", 12 ssl => 1, 13 loggrep => 'Issuer.*/OU=relayd/', 14 }, 15 relayd => { 16 relay => [ "session timeout 2" ], 17 loggrep => { qr/buffer event timeout/ => 0 }, 18 forwardssl => 1, 19 listenssl => 1, 20 }, 21 server => { 22 func => \&http_server, 23 sleep => 1, 24 method => "GET", 25 ssl => 1, 26 }, 27 len => 5, 28); 29 301; 31