Rename ecdh_curve_list to curve_list
diff --git a/include/polarssl/ssl.h b/include/polarssl/ssl.h
index 2fdc01d..3ab3629 100644
--- a/include/polarssl/ssl.h
+++ b/include/polarssl/ssl.h
@@ -728,8 +728,8 @@
int allow_legacy_renegotiation; /*!< allow legacy renegotiation */
const int *ciphersuite_list[4]; /*!< allowed ciphersuites / version */
#if defined(POLARSSL_KEY_EXCHANGE__SOME__ECDHE_ENABLED) && \
- defined(POLARSSL_SSL_SET_ECDH_CURVES)
- const ecp_group_id *ecdh_curve_list;/*!< allowed curves for ECDH */
+ defined(POLARSSL_SSL_SET_CURVES)
+ const ecp_group_id *curve_list; /*!< allowed curves */
#endif
#if defined(POLARSSL_SSL_TRUNCATED_HMAC)
int trunc_hmac; /*!< negotiate truncated hmac? */
@@ -1160,7 +1160,7 @@
#endif
#if defined(POLARSSL_KEY_EXCHANGE__SOME__ECDHE_ENABLED) && \
- defined(POLARSSL_SSL_SET_ECDH_CURVES)
+ defined(POLARSSL_SSL_SET_CURVES)
/**
* \brief Set the allowed ECDH curves.
* (Default: all defined curves.)
@@ -1169,10 +1169,9 @@
* handshake curve preference.
*
* \param ssl SSL context
- * \param ecdh_curve_list Zero terminated list of the allowed ECDH curves
+ * \param curves Zero terminated list of the allowed ECDH curves
*/
-void ssl_set_ecdh_curves( ssl_context *ssl,
- const ecp_group_id *ecdh_curve_list );
+void ssl_set_curves( ssl_context *ssl, const ecp_group_id *curves );
#endif
#if defined(POLARSSL_SSL_SERVER_NAME_INDICATION)