Loading crypto/bio/bss_dgram.c +13 −8 Original line number Diff line number Diff line Loading @@ -250,6 +250,10 @@ static void dgram_reset_rcv_timeout(BIO *b) { #if defined(SO_RCVTIMEO) bio_dgram_data *data = (bio_dgram_data *)b->ptr; /* Is a timer active? */ if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0) { #ifdef OPENSSL_SYS_WINDOWS int timeout = data->socket_timeout.tv_sec * 1000 + data->socket_timeout.tv_usec / 1000; Loading @@ -261,6 +265,7 @@ static void dgram_reset_rcv_timeout(BIO *b) sizeof(struct timeval)) < 0) { perror("setsockopt"); } #endif } #endif } Loading Loading
crypto/bio/bss_dgram.c +13 −8 Original line number Diff line number Diff line Loading @@ -250,6 +250,10 @@ static void dgram_reset_rcv_timeout(BIO *b) { #if defined(SO_RCVTIMEO) bio_dgram_data *data = (bio_dgram_data *)b->ptr; /* Is a timer active? */ if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0) { #ifdef OPENSSL_SYS_WINDOWS int timeout = data->socket_timeout.tv_sec * 1000 + data->socket_timeout.tv_usec / 1000; Loading @@ -261,6 +265,7 @@ static void dgram_reset_rcv_timeout(BIO *b) sizeof(struct timeval)) < 0) { perror("setsockopt"); } #endif } #endif } Loading