Header guard symbols should match their file name to make guard collisions less likely. Cleaned up with scripts/clean-header-guards.pl, followed by some renaming of new guard symbols picked by the script to better ones. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20220506134911.2856099-2-armbru@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> [Change to generated file ebpf/rss.bpf.skeleton.h backed out]
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * QEMU TLS Cipher Suites Registry (RFC8447)
 | 
						|
 *
 | 
						|
 * Copyright (c) 2018-2020 Red Hat, Inc.
 | 
						|
 *
 | 
						|
 * Author: Philippe Mathieu-Daudé <philmd@redhat.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef QCRYPTO_TLS_CIPHER_SUITES_H
 | 
						|
#define QCRYPTO_TLS_CIPHER_SUITES_H
 | 
						|
 | 
						|
#include "qom/object.h"
 | 
						|
#include "crypto/tlscreds.h"
 | 
						|
 | 
						|
#define TYPE_QCRYPTO_TLS_CIPHER_SUITES "tls-cipher-suites"
 | 
						|
typedef struct QCryptoTLSCipherSuites QCryptoTLSCipherSuites;
 | 
						|
DECLARE_INSTANCE_CHECKER(QCryptoTLSCipherSuites, QCRYPTO_TLS_CIPHER_SUITES,
 | 
						|
                         TYPE_QCRYPTO_TLS_CIPHER_SUITES)
 | 
						|
 | 
						|
/**
 | 
						|
  * qcrypto_tls_cipher_suites_get_data:
 | 
						|
  * @obj: pointer to a TLS cipher suites object
 | 
						|
  * @errp: pointer to a NULL-initialized error object
 | 
						|
  *
 | 
						|
  * Returns: reference to a byte array containing the data.
 | 
						|
  * The caller should release the reference when no longer
 | 
						|
  * required.
 | 
						|
  */
 | 
						|
GByteArray *qcrypto_tls_cipher_suites_get_data(QCryptoTLSCipherSuites *obj,
 | 
						|
                                               Error **errp);
 | 
						|
 | 
						|
#endif /* QCRYPTO_TLS_CIPHER_SUITES_H */
 |