Lines Matching refs:socket_timeout
110 struct timeval socket_timeout;
212 data->socket_timeout.tv_sec = timeout / 1000;
213 data->socket_timeout.tv_usec = (timeout % 1000) * 1000;
216 socklen_t sz = sizeof(data->socket_timeout);
218 &(data->socket_timeout), &sz) < 0) {
221 OPENSSL_assert(sz <= sizeof(data->socket_timeout));
246 if ((data->socket_timeout.tv_sec == 0
247 && data->socket_timeout.tv_usec == 0)
248 || (data->socket_timeout.tv_sec > timeleft.tv_sec)
249 || (data->socket_timeout.tv_sec == timeleft.tv_sec
250 && data->socket_timeout.tv_usec >= timeleft.tv_usec)) {
276 int timeout = data->socket_timeout.tv_sec * 1000 +
277 data->socket_timeout.tv_usec / 1000;
284 (b->num, SOL_SOCKET, SO_RCVTIMEO, &(data->socket_timeout),