Fix ssl_get_prev_session overrun
[openssl.git] / ssl / record /
2015-04-10 Matt CaswellFix read_ahead issue
2015-03-31 Matt CaswellClean up record layer
2015-03-26 Matt CaswellAdd Record Layer documentation
2015-03-26 Matt CaswellFix formatting oddities
2015-03-26 Matt CaswellFix record.h formatting
2015-03-26 Matt CaswellDefine SEQ_NUM_SIZE
2015-03-26 Matt CaswellRename record layer source files
2015-03-26 Matt CaswellRemove some unneccessary macros
2015-03-26 Matt CaswellRenamed record layer header files
2015-03-26 Matt CaswellReorganise header files
2015-03-26 Matt CaswellRemove last trace of non-record layer code reading...
2015-03-26 Matt CaswellMove last_write_sequence from s->d1 to s->rlayer.d.
2015-03-26 Matt CaswellMove ssl3_record_sequence_update into record layer
2015-03-26 Matt CaswellMove buffered_app_data from s->d1 to s->rlayer.d
2015-03-26 Matt CaswellMove handshake_fragment, handshake_fragment_len, alert_...
2015-03-26 Matt CaswellFix seg fault in dtls1_new
2015-03-26 Matt CaswellMoved processed_rcds and unprocessed_rcds from s->d1...
2015-03-26 Matt CaswellMove bitmap and next_bitmap from s->d1 to s->rlayer.d.
2015-03-26 Matt CaswellMove r_epoch and w_epoch from s->d1 to s->rlayer.d
2015-03-26 Matt CaswellIntroduce a DTLS_RECORD_LAYER type for DTLS record...
2015-03-26 Matt CaswellMove DTLS1_RECORD_DATA into rec_layer.h
2015-03-26 Matt CaswellMove read_sequence and write_sequence from s->s3 to...
2015-03-26 Matt CaswellMove s->s3->wpend_* to s->rlayer
2015-03-26 Matt CaswellMove handshake_fragment, handshake_fragment_len, alert_...
2015-03-26 Matt CaswellMove s->s3->wnum to s->rlayer.wnum
2015-03-26 Matt CaswellMove s->rstate to s->rlayer.rstate
2015-03-26 Matt CaswellMove s->packet and s->packet_length into s->rlayer
2015-03-26 Matt CaswellRemove unneccessary use of accessor function now code...
2015-03-26 Matt CaswellMake rrec, wrec, rbuf and wbuf fully private to the...
2015-03-26 Matt CaswellRemoved dependency on rrec from heartbeat processing
2015-03-26 Matt CaswellIntroduce macro RECORD_LAYER_setup_comp_buffer
2015-03-26 Matt CaswellMove ssl3_pending into the record layer
2015-03-26 Matt CaswellRemove RECORD_LAYER_set_ssl and introduce RECORD_LAYER_init
2015-03-26 Matt CaswellProvide RECORD_LAYER_set_data function
2015-03-26 Matt CaswellIntroduce the functions RECORD_LAYER_release, RECORD_LA...
2015-03-26 Matt CaswellCreate RECORD_LAYER_clear function.
2015-03-26 Matt CaswellTidy up rec_layer.h. Add some comments regarding which...
2015-03-26 Matt CaswellMoved s3_pkt.c, s23_pkt.c and d1_pkt.c into the record...
2015-03-26 Matt CaswellMove more SSL3_RECORD oriented functions into ssl3_record.c
2015-03-26 Matt CaswellMove SSL3_RECORD oriented functions into ssl3_record.c
2015-03-26 Matt CaswellMove SSL3_BUFFER set up and release code into ssl3_buffer.c
2015-03-26 Matt CaswellMove s->s3->wrec to s>rlayer>wrec
2015-03-26 Matt CaswellEncapsulate s->s3->wrec
2015-03-26 Matt CaswellMove s->s3->rrec to s->rlayer->rrec
2015-03-26 Matt CaswellEncapsulate s->s3->rrec
2015-03-26 Matt CaswellMove s->s3->wbuf to s->rlayer->wbuf
2015-03-26 Matt CaswellEncapsulate access to s->s3->wbuf
2015-03-26 Matt CaswellMove s->s3->rrec into s->rlayer
2015-03-26 Matt CaswellEncapsulate SSL3_BUFFER and all access to s->s3->rbuf.
2015-03-26 Matt CaswellCreate a RECORD_LAYER structure and move read_ahead...