• Home
  • Raw
  • Download

Lines Matching full:timeout

56 #define TIMEOUTS(x,y) data->set.timeout = x; data->set.connecttimeout = y
86 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
92 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
95 /* no connect timeout set, not connecting */
98 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
101 /* no connect timeout set, connecting */
104 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
107 /* only connect timeout set, not connecting */
108 {BASE + 4, 0, 0, 10000, FALSE, 0, "no timeout active"},
109 {BASE + 4, 990000, 0, 10000, FALSE, 0, "no timeout active"},
110 {BASE + 10, 0, 0, 10000, FALSE, 0, "no timeout active"},
111 {BASE + 12, 0, 0, 10000, FALSE, 0, "no timeout active"},
113 /* only connect timeout set, connecting */
116 {BASE + 10, 0, 0, 10000, TRUE, -1, "timeout is -1, expired"},
119 /* no timeout set, not connecting */
120 {BASE + 4, 0, 0, 0, FALSE, 0, "no timeout active"},
121 {BASE + 4, 990000, 0, 0, FALSE, 0, "no timeout active"},
122 {BASE + 10, 0, 0, 0, FALSE, 0, "no timeout active"},
123 {BASE + 12, 0, 0, 0, FALSE, 0, "no timeout active"},
125 /* no timeout set, connecting */
126 {BASE + 4, 0, 0, 0, TRUE, 296000, "no timeout active"},
127 {BASE + 4, 990000, 0, 0, TRUE, 295010, "no timeout active"},
128 {BASE + 10, 0, 0, 0, TRUE, 290000, "no timeout active"},
129 {BASE + 12, 0, 0, 0, TRUE, 288000, "no timeout active"},
131 /* both timeouts set, connecting, connect timeout the longer one */
143 timediff_t timeout; variable
146 timeout = Curl_timeleft(data, &now, run[i].connecting);
147 if(timeout != run[i].result)