mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 02:25:40 +01:00
Fix default port number information
This commit is contained in:
parent
cef29a2fd0
commit
5b9e318e34
@ -47,6 +47,8 @@ Bugfix
|
|||||||
* Fix private key DER output in the key_app_writer example. File contents
|
* Fix private key DER output in the key_app_writer example. File contents
|
||||||
were shifted by one byte, creating an invalid ASN.1 tag. Fixed by
|
were shifted by one byte, creating an invalid ASN.1 tag. Fixed by
|
||||||
Christian Walther in #2239.
|
Christian Walther in #2239.
|
||||||
|
* Fix incorrect default port number in ssl_mail_client example's usage.
|
||||||
|
Found and fixed by irwir. #2337
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
* Include configuration file in all header files that use configuration,
|
* Include configuration file in all header files that use configuration,
|
||||||
|
@ -111,8 +111,8 @@ int main( void )
|
|||||||
#if defined(MBEDTLS_BASE64_C)
|
#if defined(MBEDTLS_BASE64_C)
|
||||||
#define USAGE_AUTH \
|
#define USAGE_AUTH \
|
||||||
" authentication=%%d default: 0 (disabled)\n" \
|
" authentication=%%d default: 0 (disabled)\n" \
|
||||||
" user_name=%%s default: \"user\"\n" \
|
" user_name=%%s default: \"" DFL_USER_NAME "\"\n" \
|
||||||
" user_pwd=%%s default: \"password\"\n"
|
" user_pwd=%%s default: \"" DFL_USER_PWD "\"\n"
|
||||||
#else
|
#else
|
||||||
#define USAGE_AUTH \
|
#define USAGE_AUTH \
|
||||||
" authentication options disabled. (Require MBEDTLS_BASE64_C)\n"
|
" authentication options disabled. (Require MBEDTLS_BASE64_C)\n"
|
||||||
@ -131,8 +131,8 @@ int main( void )
|
|||||||
#define USAGE \
|
#define USAGE \
|
||||||
"\n usage: ssl_mail_client param=<>...\n" \
|
"\n usage: ssl_mail_client param=<>...\n" \
|
||||||
"\n acceptable parameters:\n" \
|
"\n acceptable parameters:\n" \
|
||||||
" server_name=%%s default: localhost\n" \
|
" server_name=%%s default: " DFL_SERVER_NAME "\n" \
|
||||||
" server_port=%%d default: 4433\n" \
|
" server_port=%%d default: " DFL_SERVER_PORT "\n" \
|
||||||
" debug_level=%%d default: 0 (disabled)\n" \
|
" debug_level=%%d default: 0 (disabled)\n" \
|
||||||
" mode=%%d default: 0 (SSL/TLS) (1 for STARTTLS)\n" \
|
" mode=%%d default: 0 (SSL/TLS) (1 for STARTTLS)\n" \
|
||||||
USAGE_AUTH \
|
USAGE_AUTH \
|
||||||
@ -324,7 +324,7 @@ static int write_and_get_response( mbedtls_net_context *sock_fd, unsigned char *
|
|||||||
mbedtls_printf("\n%s", buf);
|
mbedtls_printf("\n%s", buf);
|
||||||
if( len && ( ret = mbedtls_net_send( sock_fd, buf, len ) ) <= 0 )
|
if( len && ( ret = mbedtls_net_send( sock_fd, buf, len ) ) <= 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " failed\n ! mbedtls_ssl_write returned %d\n\n", ret );
|
mbedtls_printf( " failed\n ! mbedtls_net_send returned %d\n\n", ret );
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -336,7 +336,7 @@ static int write_and_get_response( mbedtls_net_context *sock_fd, unsigned char *
|
|||||||
|
|
||||||
if( ret <= 0 )
|
if( ret <= 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( "failed\n ! read returned %d\n\n", ret );
|
mbedtls_printf( "failed\n ! mbedtls_net_recv returned %d\n\n", ret );
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user