aboutsummaryrefslogtreecommitdiff
path: root/ssl/methods.c
AgeCommit message (Collapse)AuthorFilesLines
2015-11-05Ensure the dtls1_get_*_methods work with DTLS_ANY_VERSIONMatt Caswell1-12/+18
The various dtls1_get*_methods did not handle the DTLS_ANY_VERSION case, so this needed to be added. Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-10-30Change statem prefix to ossl_statemMatt Caswell1-32/+36
Change various state machine functions to use the prefix ossl_statem instead. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-10-30Reorganise state machine filesMatt Caswell1-0/+347
Pull out the state machine into a separate sub directory. Also moved some functions which were nothing to do with the state machine but were in state machine files. Pulled all the SSL_METHOD definitions into one place...most of those files had very little left in them any more. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>