mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 02:55:41 +01:00
ssl_client2: allow reconnecting twice
This commit is contained in:
parent
593058e35e
commit
cf2e97eae2
@ -354,7 +354,7 @@ int main( int argc, char *argv[] )
|
||||
else if( strcmp( p, "reconnect" ) == 0 )
|
||||
{
|
||||
opt.reconnect = atoi( q );
|
||||
if( opt.reconnect < 0 || opt.reconnect > 1 )
|
||||
if( opt.reconnect < 0 || opt.reconnect > 2 )
|
||||
goto usage;
|
||||
}
|
||||
else if( strcmp( p, "min_version" ) == 0 )
|
||||
@ -818,7 +818,7 @@ send_request:
|
||||
|
||||
if( opt.reconnect != 0 )
|
||||
{
|
||||
opt.reconnect = 0;
|
||||
--opt.reconnect;
|
||||
|
||||
printf( " . Reconnecting with saved session..." );
|
||||
fflush( stdout );
|
||||
|
Loading…
Reference in New Issue
Block a user