static const SSL_METHOD *dtls1_get_method(int ver) { if (ver == DTLS1_VERSION) return(DTLSv1_method()); else if (ver == DTLS1_2_VERSION) return(DTLSv1_2_method()); else return(NULL); }
/* * DTLS methods */ static const SSL_METHOD *dtls1_get_method(int ver) { if (ver == DTLS_ANY_VERSION) return DTLS_method(); else if (ver == DTLS1_VERSION) return DTLSv1_method(); else if (ver == DTLS1_2_VERSION) return DTLSv1_2_method(); else return NULL; }
const SSL_METHOD *DTLSv1_2_client_method(void) { return DTLSv1_2_method(); }
const SSL_METHOD *DTLSv1_2_server_method(void) { return DTLSv1_2_method(); }