mirror of
				https://git.haproxy.org/git/haproxy.git/
				synced 2025-10-31 00:21:00 +01:00 
			
		
		
		
	Move the code which directly calls the functions of the OpenSSL QUIC API into quic_ssl.c new C file. Some code have been extracted from qc_conn_finalize() to implement only the QUIC TLS part (see quic_tls_finalize()) into quic_tls.c. qc_conn_finalize() has also been exported to be used from this new quic_ssl.c C module.
		
			
				
	
	
		
			22 lines
		
	
	
		
			572 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			572 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * include/haproxy/quic_ssl-t.h
 | |
|  * Definitions for QUIC over TLS/SSL api types, constants and flags.
 | |
|  *
 | |
|  * Copyright (C) 2023
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License
 | |
|  * as published by the Free Software Foundation; either version
 | |
|  * 2 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef _HAPROXY_QUIC_SSL_T_H
 | |
| #define _HAPROXY_QUIC_SSL_T_H
 | |
| 
 | |
| #include <haproxy/pool-t.h>
 | |
| 
 | |
| extern struct pool_head *pool_head_quic_ssl_sock_ctx;
 | |
| 
 | |
| #endif /* _HAPROXY_QUIC_SSL_T_H */
 |