mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 12:15:38 +01:00
Rename ssl_conf_datagram_packing() to ssl_set_datagram_packing()
The naming convention is that functions of the form mbedtls_ssl_conf_xxx() apply to the SSL configuration.
This commit is contained in:
parent
f4b010efc4
commit
1841b0a11c
@ -14,7 +14,7 @@ Features
|
|||||||
enabled by default.
|
enabled by default.
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
* Add function mbedtls_ssl_conf_datagram_packing() to configure
|
* Add function mbedtls_ssl_set_datagram_packing() to configure
|
||||||
the use of datagram packing (enabled by default).
|
the use of datagram packing (enabled by default).
|
||||||
|
|
||||||
Bugfix
|
Bugfix
|
||||||
|
@ -1842,8 +1842,8 @@ void mbedtls_ssl_conf_dtls_badmac_limit( mbedtls_ssl_config *conf, unsigned limi
|
|||||||
* are currently always sent in separate datagrams.
|
* are currently always sent in separate datagrams.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void mbedtls_ssl_conf_datagram_packing( mbedtls_ssl_context *ssl,
|
void mbedtls_ssl_set_datagram_packing( mbedtls_ssl_context *ssl,
|
||||||
unsigned allow_packing );
|
unsigned allow_packing );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Set retransmit timeout values for the DTLS handshake.
|
* \brief Set retransmit timeout values for the DTLS handshake.
|
||||||
|
@ -6477,8 +6477,8 @@ void mbedtls_ssl_conf_dtls_badmac_limit( mbedtls_ssl_config *conf, unsigned limi
|
|||||||
|
|
||||||
#if defined(MBEDTLS_SSL_PROTO_DTLS)
|
#if defined(MBEDTLS_SSL_PROTO_DTLS)
|
||||||
|
|
||||||
void mbedtls_ssl_conf_datagram_packing( mbedtls_ssl_context *ssl,
|
void mbedtls_ssl_set_datagram_packing( mbedtls_ssl_context *ssl,
|
||||||
unsigned allow_packing )
|
unsigned allow_packing )
|
||||||
{
|
{
|
||||||
ssl->disable_datagram_packing = !allow_packing;
|
ssl->disable_datagram_packing = !allow_packing;
|
||||||
}
|
}
|
||||||
|
@ -1354,7 +1354,7 @@ int main( int argc, char *argv[] )
|
|||||||
opt.hs_to_max );
|
opt.hs_to_max );
|
||||||
|
|
||||||
if( opt.dgram_packing != DFL_DGRAM_PACKING )
|
if( opt.dgram_packing != DFL_DGRAM_PACKING )
|
||||||
mbedtls_ssl_conf_datagram_packing( &ssl, opt.dgram_packing );
|
mbedtls_ssl_set_datagram_packing( &ssl, opt.dgram_packing );
|
||||||
#endif /* MBEDTLS_SSL_PROTO_DTLS */
|
#endif /* MBEDTLS_SSL_PROTO_DTLS */
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
|
#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
|
||||||
|
@ -2182,7 +2182,7 @@ int main( int argc, char *argv[] )
|
|||||||
mbedtls_ssl_conf_handshake_timeout( &conf, opt.hs_to_min, opt.hs_to_max );
|
mbedtls_ssl_conf_handshake_timeout( &conf, opt.hs_to_min, opt.hs_to_max );
|
||||||
|
|
||||||
if( opt.dgram_packing != DFL_DGRAM_PACKING )
|
if( opt.dgram_packing != DFL_DGRAM_PACKING )
|
||||||
mbedtls_ssl_conf_datagram_packing( &ssl, opt.dgram_packing );
|
mbedtls_ssl_set_datagram_packing( &ssl, opt.dgram_packing );
|
||||||
#endif /* MBEDTLS_SSL_PROTO_DTLS */
|
#endif /* MBEDTLS_SSL_PROTO_DTLS */
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
|
#if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
|
||||||
|
Loading…
Reference in New Issue
Block a user