mirror of
				https://github.com/open5gs/open5gs.git
				synced 2025-11-03 21:43:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2004-2017 Lev Walkin <vlm@lionet.info>. All rights reserved.
 | 
						|
 * Redistribution and modifications are permitted subject to BSD license.
 | 
						|
 */
 | 
						|
#include <asn_internal.h>
 | 
						|
#include <ANY.h>
 | 
						|
 | 
						|
asn_OCTET_STRING_specifics_t asn_SPC_ANY_specs = {
 | 
						|
    sizeof(ANY_t),
 | 
						|
    offsetof(ANY_t, _asn_ctx),
 | 
						|
    ASN_OSUBV_ANY
 | 
						|
};
 | 
						|
asn_TYPE_operation_t asn_OP_ANY = {
 | 
						|
    OCTET_STRING_free,
 | 
						|
#if !defined(ASN_DISABLE_PRINT_SUPPORT)
 | 
						|
    OCTET_STRING_print,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_PRINT_SUPPORT) */
 | 
						|
    OCTET_STRING_compare,
 | 
						|
#if !defined(ASN_DISABLE_BER_SUPPORT)
 | 
						|
    OCTET_STRING_decode_ber,
 | 
						|
    OCTET_STRING_encode_der,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_BER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_XER_SUPPORT)
 | 
						|
    OCTET_STRING_decode_xer_hex,
 | 
						|
    ANY_encode_xer,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_XER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_JER_SUPPORT)
 | 
						|
    ANY_encode_jer,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_JER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_OER_SUPPORT)
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_OER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_UPER_SUPPORT)
 | 
						|
    ANY_decode_uper,
 | 
						|
    ANY_encode_uper,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_UPER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_APER_SUPPORT)
 | 
						|
    ANY_decode_aper,
 | 
						|
    ANY_encode_aper,
 | 
						|
#else
 | 
						|
    0,
 | 
						|
    0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_APER_SUPPORT) */
 | 
						|
    0,  /* Random fill is not defined for ANY type */
 | 
						|
    0  /* Use generic outmost tag fetcher */
 | 
						|
};
 | 
						|
asn_TYPE_descriptor_t asn_DEF_ANY = {
 | 
						|
    "ANY",
 | 
						|
    "ANY",
 | 
						|
    &asn_OP_ANY,
 | 
						|
    0, 0, 0, 0,
 | 
						|
    {
 | 
						|
#if !defined(ASN_DISABLE_OER_SUPPORT)
 | 
						|
        0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_OER_SUPPORT) */
 | 
						|
#if !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT)
 | 
						|
        0,
 | 
						|
#endif  /* !defined(ASN_DISABLE_UPER_SUPPORT) || !defined(ASN_DISABLE_APER_SUPPORT) */
 | 
						|
        asn_generic_no_constraint
 | 
						|
    },  /* No constraints */
 | 
						|
    0, 0,  /* No members */
 | 
						|
    &asn_SPC_ANY_specs,
 | 
						|
};
 |