mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 18:28:37 +00:00
ssl_server2 now uses alloc_buffer if present and can be 'SERVERQUIT'
This commit is contained in:
parent
61d113bb7b
commit
82024bf7b9
1 changed files with 18 additions and 0 deletions
|
@ -49,6 +49,10 @@
|
||||||
#include "polarssl/ssl_cache.h"
|
#include "polarssl/ssl_cache.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
||||||
|
#include "polarssl/memory.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#define DFL_SERVER_PORT 4433
|
#define DFL_SERVER_PORT 4433
|
||||||
#define DFL_REQUEST_PAGE "/"
|
#define DFL_REQUEST_PAGE "/"
|
||||||
#define DFL_DEBUG_LEVEL 0
|
#define DFL_DEBUG_LEVEL 0
|
||||||
|
@ -185,11 +189,18 @@ int main( int argc, char *argv[] )
|
||||||
#if defined(POLARSSL_SSL_CACHE_C)
|
#if defined(POLARSSL_SSL_CACHE_C)
|
||||||
ssl_cache_context cache;
|
ssl_cache_context cache;
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
||||||
|
unsigned char alloc_buf[100000];
|
||||||
|
#endif
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
char *p, *q;
|
char *p, *q;
|
||||||
const int *list;
|
const int *list;
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C)
|
||||||
|
memory_buffer_alloc_init( alloc_buf, sizeof(alloc_buf) );
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Make sure memory references are valid.
|
* Make sure memory references are valid.
|
||||||
*/
|
*/
|
||||||
|
@ -739,6 +750,9 @@ reset:
|
||||||
len = ret;
|
len = ret;
|
||||||
printf( " %d bytes read\n\n%s", len, (char *) buf );
|
printf( " %d bytes read\n\n%s", len, (char *) buf );
|
||||||
|
|
||||||
|
if( memcmp( buf, "SERVERQUIT", 10 ) == 0 )
|
||||||
|
goto exit;
|
||||||
|
|
||||||
if( ret > 0 )
|
if( ret > 0 )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -798,6 +812,10 @@ exit:
|
||||||
ssl_cache_free( &cache );
|
ssl_cache_free( &cache );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) && defined(POLARSSL_MEMORY_DEBUG)
|
||||||
|
memory_buffer_alloc_status();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
printf( " + Press Enter to exit this program.\n" );
|
printf( " + Press Enter to exit this program.\n" );
|
||||||
fflush( stdout ); getchar();
|
fflush( stdout ); getchar();
|
||||||
|
|
Loading…
Reference in a new issue