Home | History | Annotate | Download | only in bio

Lines Matching refs:socket_timeout

167 	struct timeval socket_timeout;
285 data->socket_timeout.tv_sec = timeout / 1000;
286 data->socket_timeout.tv_usec = (timeout % 1000) * 1000;
289 sz.i = sizeof(data->socket_timeout);
291 &(data->socket_timeout), (void *)&sz) < 0)
294 OPENSSL_assert(sz.s<=sizeof(data->socket_timeout));
319 if ((data->socket_timeout.tv_sec == 0 && data->socket_timeout.tv_usec == 0) ||
320 (data->socket_timeout.tv_sec > timeleft.tv_sec) ||
321 (data->socket_timeout.tv_sec == timeleft.tv_sec &&
322 data->socket_timeout.tv_usec >= timeleft.tv_usec))
348 int timeout = data->socket_timeout.tv_sec * 1000 +
349 data->socket_timeout.tv_usec / 1000;
354 if ( setsockopt(b->num, SOL_SOCKET, SO_RCVTIMEO, &(data->socket_timeout),