mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-10-31 11:40:51 -04:00 
			
		
		
		
	Use ssl_set_client_transport_id() in ssl_server2
This commit is contained in:
		
							parent
							
								
									43c021874d
								
							
						
					
					
						commit
						336b824f07
					
				| @ -600,6 +600,7 @@ int main( int argc, char *argv[] ) | |||||||
|     psk_entry *psk_info = NULL; |     psk_entry *psk_info = NULL; | ||||||
| #endif | #endif | ||||||
|     const char *pers = "ssl_server2"; |     const char *pers = "ssl_server2"; | ||||||
|  |     unsigned char client_ip[16] = { 0 }; | ||||||
| 
 | 
 | ||||||
|     entropy_context entropy; |     entropy_context entropy; | ||||||
|     ctr_drbg_context ctr_drbg; |     ctr_drbg_context ctr_drbg; | ||||||
| @ -1498,7 +1499,7 @@ reset: | |||||||
|     printf( "  . Waiting for a remote connection ..." ); |     printf( "  . Waiting for a remote connection ..." ); | ||||||
|     fflush( stdout ); |     fflush( stdout ); | ||||||
| 
 | 
 | ||||||
|     if( ( ret = net_accept( listen_fd, &client_fd, NULL ) ) != 0 ) |     if( ( ret = net_accept( listen_fd, &client_fd, client_ip ) ) != 0 ) | ||||||
|     { |     { | ||||||
| #if !defined(_WIN32) | #if !defined(_WIN32) | ||||||
|         if( received_sigterm ) |         if( received_sigterm ) | ||||||
| @ -1528,6 +1529,19 @@ reset: | |||||||
|     else |     else | ||||||
|         ssl_set_bio( &ssl, net_recv, &client_fd, net_send, &client_fd ); |         ssl_set_bio( &ssl, net_recv, &client_fd, net_send, &client_fd ); | ||||||
| 
 | 
 | ||||||
|  | #if defined(POLARSSL_SSL_PROTO_DTLS) | ||||||
|  |     if( opt.transport == SSL_TRANSPORT_DATAGRAM ) | ||||||
|  |     { | ||||||
|  |         if( ( ret = ssl_set_client_transport_id( &ssl, client_ip, | ||||||
|  |                                                sizeof( client_ip ) ) ) != 0 ) | ||||||
|  |         { | ||||||
|  |             printf( " failed\n  ! " | ||||||
|  |                     "ssl_set_client_tranport_id() returned -0x%x\n\n", -ret ); | ||||||
|  |             goto exit; | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | #endif /* POLARSSL_SSL_PROTO_DTLS */ | ||||||
|  | 
 | ||||||
|     printf( " ok\n" ); |     printf( " ok\n" ); | ||||||
| 
 | 
 | ||||||
|     /*
 |     /*
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Manuel Pégourié-Gonnard
						Manuel Pégourié-Gonnard