Fix typos in documentation

Signed-off-by: Johan Pascal <johan.pascal@belledonne-communications.com>
This commit is contained in:
Johan Pascal 2017-02-09 08:55:16 +07:00
parent 2d9470be76
commit c28f1f600e

View File

@ -1334,8 +1334,8 @@ struct mbedtls_ssl_context
* use_srtp extension
*/
enum mbedtls_DTLS_SRTP_protection_profiles chosen_dtls_srtp_profile; /*!< negotiated SRTP profile */
unsigned char *dtls_srtp_keys; /*<! master keys and master salt for SRTP generated during handshake */
size_t dtls_srtp_keys_len; /*<! length in bytes of master keys and master salt for SRTP generated during handshake */
unsigned char *dtls_srtp_keys; /*!< master keys and master salt for SRTP generated during handshake */
size_t dtls_srtp_keys_len; /*!< length in bytes of master keys and master salt for SRTP generated during handshake */
#endif /* MBEDTLS_SSL_DTLS_SRTP */
/*
@ -3164,8 +3164,8 @@ const char *mbedtls_ssl_get_alpn_protocol( const mbedtls_ssl_context *ssl );
/**
* \brief Set the supported DTLS-SRTP protection profiles.
*
* \param ssl SSL configuration
* \param protos List of supported protection profiles,
* \param conf SSL configuration
* \param profiles List of supported protection profiles,
* in decreasing preference order.
* \param profiles_number Number of supported profiles.
*