• Home
  • Raw
  • Download

Lines Matching full:timeout

54 #define TIMEOUTS(x,y) data->set.timeout = x; data->set.connecttimeout = y
84 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
90 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
93 /* no connect timeout set, not connecting */
96 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
99 /* no connect timeout set, connecting */
102 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
105 /* only connect timeout set, not connecting */
106 {BASE + 4, 0, 0, 10000, FALSE, 0, "no timeout active"},
107 {BASE + 4, 990000, 0, 10000, FALSE, 0, "no timeout active"},
108 {BASE + 10, 0, 0, 10000, FALSE, 0, "no timeout active"},
109 {BASE + 12, 0, 0, 10000, FALSE, 0, "no timeout active"},
111 /* only connect timeout set, connecting */
114 {BASE + 10, 0, 0, 10000, TRUE, -1, "timeout is -1, expired"},
117 /* no timeout set, not connecting */
118 {BASE + 4, 0, 0, 0, FALSE, 0, "no timeout active"},
119 {BASE + 4, 990000, 0, 0, FALSE, 0, "no timeout active"},
120 {BASE + 10, 0, 0, 0, FALSE, 0, "no timeout active"},
121 {BASE + 12, 0, 0, 0, FALSE, 0, "no timeout active"},
123 /* no timeout set, connecting */
124 {BASE + 4, 0, 0, 0, TRUE, 296000, "no timeout active"},
125 {BASE + 4, 990000, 0, 0, TRUE, 295010, "no timeout active"},
126 {BASE + 10, 0, 0, 0, TRUE, 290000, "no timeout active"},
127 {BASE + 12, 0, 0, 0, TRUE, 288000, "no timeout active"},
129 /* both timeouts set, connecting, connect timeout the longer one */
141 time_t timeout; variable
144 timeout = Curl_timeleft(data, &now, run[i].connecting);
145 if(timeout != run[i].result)