Lines Matching refs:timeout

58 #define TIMEOUTS(x,y) data->set.timeout = x; data->set.connecttimeout = y
88 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
94 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
97 /* no connect timeout set, not connecting */
100 {BASE + 10, 0, 10000, 0, FALSE, -1, "timeout is -1, expired"},
103 /* no connect timeout set, connecting */
106 {BASE + 10, 0, 10000, 0, TRUE, -1, "timeout is -1, expired"},
109 /* only connect timeout set, not connecting */
110 {BASE + 4, 0, 0, 10000, FALSE, 0, "no timeout active"},
111 {BASE + 4, 990000, 0, 10000, FALSE, 0, "no timeout active"},
112 {BASE + 10, 0, 0, 10000, FALSE, 0, "no timeout active"},
113 {BASE + 12, 0, 0, 10000, FALSE, 0, "no timeout active"},
115 /* only connect timeout set, connecting */
118 {BASE + 10, 0, 0, 10000, TRUE, -1, "timeout is -1, expired"},
121 /* no timeout set, not connecting */
122 {BASE + 4, 0, 0, 0, FALSE, 0, "no timeout active"},
123 {BASE + 4, 990000, 0, 0, FALSE, 0, "no timeout active"},
124 {BASE + 10, 0, 0, 0, FALSE, 0, "no timeout active"},
125 {BASE + 12, 0, 0, 0, FALSE, 0, "no timeout active"},
127 /* no timeout set, connecting */
128 {BASE + 4, 0, 0, 0, TRUE, 296000, "no timeout active"},
129 {BASE + 4, 990000, 0, 0, TRUE, 295010, "no timeout active"},
130 {BASE + 10, 0, 0, 0, TRUE, 290000, "no timeout active"},
131 {BASE + 12, 0, 0, 0, TRUE, 288000, "no timeout active"},
133 /* both timeouts set, connecting, connect timeout the longer one */
145 timediff_t timeout;
148 timeout = Curl_timeleft(data, &now, run[i].connecting);
149 if(timeout != run[i].result)