mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 09:25:38 +00:00
Rename variable for clarity
This commit is contained in:
parent
dc370e4969
commit
6a0017b7c0
|
@ -631,7 +631,7 @@ void term_handler( int sig )
|
||||||
|
|
||||||
int main( int argc, char *argv[] )
|
int main( int argc, char *argv[] )
|
||||||
{
|
{
|
||||||
int ret = 0, len, written, frags, exchanges;
|
int ret = 0, len, written, frags, exchanges_left;
|
||||||
int version_suites[4][2];
|
int version_suites[4][2];
|
||||||
unsigned char buf[IO_BUF_LEN];
|
unsigned char buf[IO_BUF_LEN];
|
||||||
#if defined(POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED)
|
#if defined(POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED)
|
||||||
|
@ -1636,7 +1636,7 @@ reset:
|
||||||
}
|
}
|
||||||
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
#endif /* POLARSSL_X509_CRT_PARSE_C */
|
||||||
|
|
||||||
exchanges = opt.exchanges;
|
exchanges_left = opt.exchanges;
|
||||||
data_exchange:
|
data_exchange:
|
||||||
/*
|
/*
|
||||||
* 6. Read the HTTP Request
|
* 6. Read the HTTP Request
|
||||||
|
@ -1741,7 +1741,7 @@ data_exchange:
|
||||||
* (only if we're going to exhange more data afterwards)
|
* (only if we're going to exhange more data afterwards)
|
||||||
*/
|
*/
|
||||||
#if defined(POLARSSL_SSL_RENEGOTIATION)
|
#if defined(POLARSSL_SSL_RENEGOTIATION)
|
||||||
if( opt.renegotiate && exchanges > 1 )
|
if( opt.renegotiate && exchanges_left > 1 )
|
||||||
{
|
{
|
||||||
printf( " . Requestion renegotiation..." );
|
printf( " . Requestion renegotiation..." );
|
||||||
fflush( stdout );
|
fflush( stdout );
|
||||||
|
@ -1794,7 +1794,7 @@ data_exchange:
|
||||||
/*
|
/*
|
||||||
* 7b. Continue doing data exchanges?
|
* 7b. Continue doing data exchanges?
|
||||||
*/
|
*/
|
||||||
if( --exchanges > 0 )
|
if( --exchanges_left > 0 )
|
||||||
goto data_exchange;
|
goto data_exchange;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue