blob: 23eb2ab2676789bab9511a8f25ba5f6c87146faa [file] [log] [blame]
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +02001/*
2 * UDP proxy: emulate an unreliable UDP connexion for DTLS testing
3 *
4 * Copyright (C) 2006-2014, Brainspark B.V.
5 *
6 * This file is part of PolarSSL (http://www.polarssl.org)
7 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 */
25
26#if !defined(POLARSSL_CONFIG_FILE)
27#include "polarssl/config.h"
28#else
29#include POLARSSL_CONFIG_FILE
30#endif
31
32#if !defined(POLARSSL_NET_C)
33#include <stdio.h>
34int main( void )
35{
36 printf( "POLARSSL_NET_C not defined.\n" );
37 return( 0 );
38}
39#else
40
41#include "polarssl/net.h"
42#include "polarssl/error.h"
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +020043#include "polarssl/ssl.h"
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +020044
45#include <stdio.h>
46#include <stdlib.h>
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +020047#if defined(POLARSSL_HAVE_TIME)
48#include <time.h>
49#endif
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +020050
51/* For select() */
52#if (defined(_WIN32) || defined(_WIN32_WCE)) && !defined(EFIX64) && \
53 !defined(EFI32)
54#include <winsock2.h>
55#include <windows.h>
56#if defined(_MSC_VER)
57#if defined(_WIN32_WCE)
58#pragma comment( lib, "ws2.lib" )
59#else
60#pragma comment( lib, "ws2_32.lib" )
61#endif
62#endif /* _MSC_VER */
63#else /* ( _WIN32 || _WIN32_WCE ) && !EFIX64 && !EFI32 */
64#include <sys/time.h>
65#include <sys/types.h>
66#include <unistd.h>
67#endif /* ( _WIN32 || _WIN32_WCE ) && !EFIX64 && !EFI32 */
68
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +020069#define MAX_MSG_SIZE 4096 /* Reasonable max size for our tests */
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +020070
71#define DFL_SERVER_ADDR "localhost"
72#define DFL_SERVER_PORT 4433
73#define DFL_LISTEN_ADDR "localhost"
74#define DFL_LISTEN_PORT 5556
75
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +020076#define USAGE \
77 "\n usage: udp_proxy param=<>...\n" \
78 "\n acceptable parameters:\n" \
79 " server_addr=%%d default: localhost\n" \
80 " server_port=%%d default: 4433\n" \
81 " listen_addr=%%d default: localhost\n" \
82 " listen_port=%%d default: 4433\n" \
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +020083 "\n" \
84 " duplicate=%%d default: 0 (no duplication)\n" \
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +020085 " duplicate 1 packet every N packets\n" \
86 " delay=%%d default: 0 (no delayed packets)\n" \
87 " delay 1 packet every N packets\n" \
Manuel Pégourié-Gonnard81f2fe92014-09-08 10:44:57 +020088 " delay_ccs=%%d default: 0 (don't delay ChangeCipherSuite)\n" \
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +020089 " drop=%%d default: 0 (no dropped packets)\n" \
90 " drop 1 packet every N packets\n" \
Manuel Pégourié-Gonnardeb00bfd2014-09-08 11:11:42 +020091 " mtu=%%d default: 0 (unlimited)\n" \
92 " drop packets larger than N bytes\n" \
Manuel Pégourié-Gonnard6c18a392014-09-08 11:24:58 +020093 " bad_ad=%%d default: 0 (don't add bad ApplicationData)\n" \
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +020094 "\n"
95
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +020096/*
97 * global options
98 */
99static struct options
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200100{
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200101 const char *server_addr; /* address to forward packets to */
102 int server_port; /* port to forward packets to */
103 const char *listen_addr; /* address for accepting client connections */
104 int listen_port; /* port for accepting client connections */
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200105
106 int duplicate; /* duplicate 1 in N packets (none if 0) */
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200107 int delay; /* delay 1 packet in N (none if 0) */
Manuel Pégourié-Gonnard81f2fe92014-09-08 10:44:57 +0200108 int delay_ccs; /* delay ChangeCipherSpec */
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200109 int drop; /* drop 1 packet in N (none if 0) */
Manuel Pégourié-Gonnardeb00bfd2014-09-08 11:11:42 +0200110 int mtu; /* drop packets larger than this */
Manuel Pégourié-Gonnard6c18a392014-09-08 11:24:58 +0200111 int bad_ad; /* inject corrupted ApplicationData record */
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200112} opt;
113
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200114/*
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200115 * global counters
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200116 */
117static int dupl_cnt;
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200118static int delay_cnt;
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200119static int drop_cnt;
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200120
121/* Do not always start with the same state */
122static void randomize_counters( void )
123{
124#if defined(POLARSSL_HAVE_TIME)
125 srand( time( NULL ) );
126#endif
127
128 if( opt.duplicate != 0 )
129 dupl_cnt = rand() % opt.duplicate;
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200130 if( opt.delay != 0 )
131 delay_cnt = rand() % opt.delay;
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200132 if( opt.drop != 0 )
133 drop_cnt = rand() % opt.drop;
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200134}
135
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200136static void exit_usage( const char *name, const char *value )
137{
138 if( value == NULL )
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200139 printf( " unknown option or missing value: %s\n", name );
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200140 else
141 printf( " option %s: illegal value: %s\n", name, value );
142
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200143 printf( USAGE );
144 exit( 1 );
145}
146
147static void get_options( int argc, char *argv[] )
148{
149 int i;
150 char *p, *q;
151
152 opt.server_addr = DFL_SERVER_ADDR;
153 opt.server_port = DFL_SERVER_PORT;
154 opt.listen_addr = DFL_LISTEN_ADDR;
155 opt.listen_port = DFL_LISTEN_PORT;
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200156 /* Other members default to 0 */
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200157
158 for( i = 1; i < argc; i++ )
159 {
160 p = argv[i];
161 if( ( q = strchr( p, '=' ) ) == NULL )
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200162 exit_usage( p, NULL );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200163 *q++ = '\0';
164
165 if( strcmp( p, "server_addr" ) == 0 )
166 opt.server_addr = q;
167 else if( strcmp( p, "server_port" ) == 0 )
168 {
169 opt.server_port = atoi( q );
170 if( opt.server_port < 1 || opt.server_port > 65535 )
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200171 exit_usage( p, q );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200172 }
173 else if( strcmp( p, "listen_addr" ) == 0 )
174 opt.listen_addr = q;
175 else if( strcmp( p, "listen_port" ) == 0 )
176 {
177 opt.listen_port = atoi( q );
178 if( opt.listen_port < 1 || opt.listen_port > 65535 )
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200179 exit_usage( p, q );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200180 }
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200181 else if( strcmp( p, "duplicate" ) == 0 )
182 {
183 opt.duplicate = atoi( q );
184 if( opt.duplicate < 0 || opt.duplicate > 10 )
185 exit_usage( p, q );
186 }
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200187 else if( strcmp( p, "delay" ) == 0 )
188 {
189 opt.delay = atoi( q );
190 if( opt.delay < 0 || opt.delay > 10 || opt.delay == 1 )
191 exit_usage( p, q );
192 }
Manuel Pégourié-Gonnard81f2fe92014-09-08 10:44:57 +0200193 else if( strcmp( p, "delay_ccs" ) == 0 )
194 {
195 opt.delay_ccs = atoi( q );
196 if( opt.delay_ccs < 0 || opt.delay_ccs > 1 )
197 exit_usage( p, q );
198 }
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200199 else if( strcmp( p, "drop" ) == 0 )
200 {
201 opt.drop = atoi( q );
202 if( opt.drop < 0 || opt.drop > 10 || opt.drop == 1 )
203 exit_usage( p, q );
204 }
Manuel Pégourié-Gonnardeb00bfd2014-09-08 11:11:42 +0200205 else if( strcmp( p, "mtu" ) == 0 )
206 {
207 opt.mtu = atoi( q );
208 if( opt.mtu < 0 || opt.mtu > MAX_MSG_SIZE )
209 exit_usage( p, q );
210 }
Manuel Pégourié-Gonnard6c18a392014-09-08 11:24:58 +0200211 else if( strcmp( p, "bad_ad" ) == 0 )
212 {
213 opt.bad_ad = atoi( q );
214 if( opt.bad_ad < 0 || opt.bad_ad > 1 )
215 exit_usage( p, q );
216 }
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200217 else
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200218 exit_usage( p, NULL );
219 }
220}
221
222static const char *msg_type( unsigned char *msg, size_t len )
223{
224 if( len < 1 ) return( "Invalid" );
225 switch( msg[0] )
226 {
227 case SSL_MSG_CHANGE_CIPHER_SPEC: return( "ChangeCipherSpec" );
228 case SSL_MSG_ALERT: return( "Alert" );
229 case SSL_MSG_APPLICATION_DATA: return( "ApplicationData" );
230 case SSL_MSG_HANDSHAKE: break; /* See below */
231 default: return( "Unknown" );
232 }
233
234 if( len < 13 ) return( "Invalid handshake" );
235 switch( msg[13] )
236 {
237 case SSL_HS_HELLO_REQUEST: return( "HelloRequest" );
238 case SSL_HS_CLIENT_HELLO: return( "ClientHello" );
239 case SSL_HS_SERVER_HELLO: return( "ServerHello" );
240 case SSL_HS_HELLO_VERIFY_REQUEST: return( "HelloVerifyRequest" );
241 case SSL_HS_NEW_SESSION_TICKET: return( "NewSessionTicket" );
242 case SSL_HS_CERTIFICATE: return( "Certificate" );
243 case SSL_HS_SERVER_KEY_EXCHANGE: return( "ServerKeyExchange" );
244 case SSL_HS_CERTIFICATE_REQUEST: return( "CertificateRequest" );
245 case SSL_HS_SERVER_HELLO_DONE: return( "ServerHelloDone" );
246 case SSL_HS_CERTIFICATE_VERIFY: return( "CertificateVerify" );
247 case SSL_HS_CLIENT_KEY_EXCHANGE: return( "ClientKeyExchange" );
248 case SSL_HS_FINISHED: return( "Finished" );
249 default: return( "Unkown handshake" );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200250 }
251}
252
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200253typedef struct
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200254{
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200255 void *dst;
256 const char *way;
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200257 const char *type;
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200258 unsigned len;
259 unsigned char buf[MAX_MSG_SIZE];
260} packet;
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200261
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200262/* Print packet. Outgoing packets come with a reason (forward, dupl, etc.) */
263void print_packet( const packet *p, const char *why )
264{
265 if( why == NULL )
266 printf( " > %s: %s (%u bytes)\n", p->way, p->type, p->len );
267 else
268 printf( " < %s: %s (%u bytes): %s\n", p->way, p->type, p->len, why );
269 fflush( stdout );
270}
271
272int send_packet( const packet *p, const char *why )
273{
274 int ret;
275
Manuel Pégourié-Gonnard6c18a392014-09-08 11:24:58 +0200276 /* insert corrupted ApplicationData record? */
277 if( opt.bad_ad &&
278 strcmp( p->type, "ApplicationData" ) == 0 )
279 {
280 unsigned char buf[MAX_MSG_SIZE];
281 memcpy( buf, p->buf, p->len );
282 ++buf[p->len - 1];
283
284 print_packet( p, "corrupted" );
285 if( ( ret = net_send( p->dst, buf, p->len ) ) <= 0 )
286 {
287 printf( " ! net_send returned %d\n", ret );
288 return( ret );
289 }
290 }
291
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200292 print_packet( p, why );
293 if( ( ret = net_send( p->dst, p->buf, p->len ) ) <= 0 )
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200294 {
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200295 printf( " ! net_send returned %d\n", ret );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200296 return( ret );
297 }
298
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200299 /* Don't duplicate Application Data, only handshake covered */
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200300 if( opt.duplicate != 0 &&
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200301 strcmp( p->type, "ApplicationData" ) != 0 &&
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200302 ++dupl_cnt == opt.duplicate )
303 {
304 dupl_cnt = 0;
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200305 print_packet( p, "duplicated" );
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200306
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200307 if( ( ret = net_send( p->dst, p->buf, p->len ) ) <= 0 )
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200308 {
309 printf( " ! net_send returned %d\n", ret );
310 return( ret );
311 }
312 }
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200313
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200314 return( 0 );
315}
316
317int handle_message( const char *way, int dst, int src )
318{
319 int ret;
320 packet cur;
321 static packet prev;
322
Manuel Pégourié-Gonnard63eca932014-09-08 16:39:08 +0200323 /* receive packet */
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200324 if( ( ret = net_recv( &src, cur.buf, sizeof( cur.buf ) ) ) <= 0 )
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200325 {
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200326 printf( " ! net_recv returned %d\n", ret );
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200327 return( ret );
328 }
329
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200330 cur.len = ret;
331 cur.type = msg_type( cur.buf, cur.len );
332 cur.way = way;
333 cur.dst = &dst;
334 print_packet( &cur, NULL );
335
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200336 /* do we want to drop, delay, or forward it? */
Manuel Pégourié-Gonnardeb00bfd2014-09-08 11:11:42 +0200337 if( ( opt.mtu != 0 &&
338 cur.len > (unsigned) opt.mtu ) ||
339 ( opt.drop != 0 &&
340 strcmp( cur.type, "ApplicationData" ) != 0 &&
341 ++drop_cnt == opt.drop ) )
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200342 {
343 drop_cnt = 0;
344 }
Manuel Pégourié-Gonnard81f2fe92014-09-08 10:44:57 +0200345 else if( ( opt.delay_ccs == 1 &&
346 strcmp( cur.type, "ChangeCipherSpec" ) == 0 ) ||
347 ( opt.delay != 0 &&
348 strcmp( cur.type, "ApplicationData" ) != 0 &&
349 ++delay_cnt == opt.delay ) )
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200350 {
351 delay_cnt = 0;
352 memcpy( &prev, &cur, sizeof( packet ) );
353 }
354 else
355 {
Manuel Pégourié-Gonnard60fdd7e2014-09-06 14:49:52 +0200356 /* forward and possibly duplicate */
Manuel Pégourié-Gonnard21398c32014-09-06 14:36:46 +0200357 if( ( ret = send_packet( &cur, "forwarded" ) ) != 0 )
358 return( ret );
359
360 /* send previously delayed message if any */
361 if( prev.dst != NULL )
362 {
363 ret = send_packet( &prev, "delayed" );
364 memset( &prev, 0, sizeof( packet ) );
365 if( ret != 0 )
366 return( ret );
367 }
368 }
369
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200370 return( 0 );
371}
372
373int main( int argc, char *argv[] )
374{
375 int ret;
376
377 int listen_fd = -1;
378 int client_fd = -1;
379 int server_fd = -1;
380
381 int nb_fds;
382 fd_set read_fds;
383
384 get_options( argc, argv );
Manuel Pégourié-Gonnard2c41bd82014-09-06 08:14:47 +0200385 randomize_counters();
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200386
387 /*
Manuel Pégourié-Gonnard44d5e632014-09-06 08:07:45 +0200388 * 0. "Connect" to the server
Manuel Pégourié-Gonnardcb4137b2014-09-04 14:55:28 +0200389 */
390 printf( " . Connect to server on UDP/%s/%d ...",
391 opt.server_addr, opt.server_port );
392 fflush( stdout );
393
394 if( ( ret = net_connect( &server_fd, opt.server_addr, opt.server_port,
395 NET_PROTO_UDP ) ) != 0 )
396 {
397 printf( " failed\n ! net_connect returned %d\n\n", ret );
398 goto exit;
399 }
400
401 printf( " ok\n" );
402
403 /*
404 * 1. Setup the "listening" UDP socket
405 */
406 printf( " . Bind on UDP/%s/%d ...",
407 opt.listen_addr, opt.listen_port );
408 fflush( stdout );
409
410 if( ( ret = net_bind( &listen_fd, opt.listen_addr, opt.listen_port,
411 NET_PROTO_UDP ) ) != 0 )
412 {
413 printf( " failed\n ! net_bind returned %d\n\n", ret );
414 goto exit;
415 }
416
417 printf( " ok\n" );
418
419 /*
420 * 2. Wait until a client connects
421 */
422 printf( " . Waiting for a remote connection ..." );
423 fflush( stdout );
424
425 if( ( ret = net_accept( listen_fd, &client_fd, NULL ) ) != 0 )
426 {
427 printf( " failed\n ! net_accept returned %d\n\n", ret );
428 goto exit;
429 }
430
431 printf( " ok\n" );
432 fflush( stdout );
433
434 /*
435 * 3. Forward packets forever (kill the process to terminate it)
436 */
437 nb_fds = ( client_fd > server_fd ? client_fd : server_fd ) + 1;
438
439 while( 1 )
440 {
441 FD_ZERO( &read_fds );
442 FD_SET( server_fd, &read_fds );
443 FD_SET( client_fd, &read_fds );
444
445 if( ( ret = select( nb_fds, &read_fds, NULL, NULL, NULL ) ) <= 0 )
446 {
447 perror( "select" );
448 goto exit;
449 }
450
451 if( FD_ISSET( client_fd, &read_fds ) )
452 {
453 if( ( ret = handle_message( "c2s", server_fd, client_fd ) ) != 0 )
454 goto exit;
455 }
456
457 if( FD_ISSET( server_fd, &read_fds ) )
458 {
459 if( ( ret = handle_message( "s2c", client_fd, server_fd ) ) != 0 )
460 goto exit;
461 }
462 }
463
464exit:
465
466#ifdef POLARSSL_ERROR_C
467 if( ret != 0 )
468 {
469 char error_buf[100];
470 polarssl_strerror( ret, error_buf, 100 );
471 printf( "Last error was: -0x%04X - %s\n\n", - ret, error_buf );
472 fflush( stdout );
473 }
474#endif
475
476 if( client_fd != -1 )
477 net_close( client_fd );
478
479 if( listen_fd != -1 )
480 net_close( listen_fd );
481
482#if defined(_WIN32)
483 printf( " Press Enter to exit this program.\n" );
484 fflush( stdout ); getchar();
485#endif
486
487 return( ret != 0 );
488}
489
490#endif /* POLARSSL_NET_C */