Loading ssl/d1_pkt.c +0 −23 Original line number Diff line number Diff line Loading @@ -178,9 +178,6 @@ static int dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr, static int dtls1_buffer_record(SSL *s, record_pqueue *q, unsigned char *priority); static int dtls1_process_record(SSL *s); #if PQ_64BIT_IS_INTEGER static PQ_64BIT bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num); #endif static void dtls1_clear_timeouts(SSL *s); /* copy buffered record into SSL structure */ Loading Loading @@ -1710,26 +1707,6 @@ dtls1_reset_seq_numbers(SSL *s, int rw) memset(seq, 0x00, seq_bytes); } #if PQ_64BIT_IS_INTEGER static PQ_64BIT bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num) { PQ_64BIT _num; _num = (((PQ_64BIT)bytes[0]) << 56) | (((PQ_64BIT)bytes[1]) << 48) | (((PQ_64BIT)bytes[2]) << 40) | (((PQ_64BIT)bytes[3]) << 32) | (((PQ_64BIT)bytes[4]) << 24) | (((PQ_64BIT)bytes[5]) << 16) | (((PQ_64BIT)bytes[6]) << 8) | (((PQ_64BIT)bytes[7]) ); *num = _num ; return _num; } #endif static void dtls1_clear_timeouts(SSL *s) Loading Loading
ssl/d1_pkt.c +0 −23 Original line number Diff line number Diff line Loading @@ -178,9 +178,6 @@ static int dtls1_record_needs_buffering(SSL *s, SSL3_RECORD *rr, static int dtls1_buffer_record(SSL *s, record_pqueue *q, unsigned char *priority); static int dtls1_process_record(SSL *s); #if PQ_64BIT_IS_INTEGER static PQ_64BIT bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num); #endif static void dtls1_clear_timeouts(SSL *s); /* copy buffered record into SSL structure */ Loading Loading @@ -1710,26 +1707,6 @@ dtls1_reset_seq_numbers(SSL *s, int rw) memset(seq, 0x00, seq_bytes); } #if PQ_64BIT_IS_INTEGER static PQ_64BIT bytes_to_long_long(unsigned char *bytes, PQ_64BIT *num) { PQ_64BIT _num; _num = (((PQ_64BIT)bytes[0]) << 56) | (((PQ_64BIT)bytes[1]) << 48) | (((PQ_64BIT)bytes[2]) << 40) | (((PQ_64BIT)bytes[3]) << 32) | (((PQ_64BIT)bytes[4]) << 24) | (((PQ_64BIT)bytes[5]) << 16) | (((PQ_64BIT)bytes[6]) << 8) | (((PQ_64BIT)bytes[7]) ); *num = _num ; return _num; } #endif static void dtls1_clear_timeouts(SSL *s) Loading