:orphan: .. index:: pair: struct; asn_type .. _doxid-structasn__type: struct asn_type =============== .. toctree:: :hidden: Overview ~~~~~~~~ ASN.1 type internal presentation :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct asn_type { // fields const char* :ref:`name`; :ref:`asn_tag_t` :ref:`tag`; :ref:`asn_syntax` :ref:`syntax`; size_t :ref:`len`; const :ref:`asn_named_entry_t`* :ref:`named_entries`; const asn_type* :ref:`subtype`; const :ref:`asn_enum_entry_t`* :ref:`enum_entries`; union asn_type::@5 :target:`sp`; }; .. _details-structasn__type: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ ASN.1 type internal presentation Fields ------ .. index:: pair: variable; name .. _doxid-structasn__type_1aa38d9529f9e27744a62ee19a6d725671: .. ref-code-block:: cpp :class: doxyrest-title-code-block const char* name ASN.1 name of type, if any assigned. .. index:: pair: variable; tag .. _doxid-structasn__type_1aea9b0c2009bb9c2613dd41db1e4a2bd5: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`asn_tag_t` tag tag value of type. .. index:: pair: variable; syntax .. _doxid-structasn__type_1ac3f3332d87ebc6323d11b91b908ec94b: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`asn_syntax` syntax syntax of type, that is "type" of value itself. .. index:: pair: variable; len .. _doxid-structasn__type_1a8a5882cb9996a9cc99295b79bd142528: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t len Size of value, if any specified as SIZE clause in ASN.1 type specification.. Zero if not specified. Whereas clause SIZE may not be used with constructions with named fields, for such types this structure member used for quantity of named fields. For INTEGER zero for usual native 'int' or number of bits used. For ENUMERATED number of named values. .. index:: pair: variable; named_entries .. _doxid-structasn__type_1ae69c3cce40e07380a3f06abd7439e93d: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`asn_named_entry_t`* named_entries for syntaxes SEQUENCE, SET and CHOICE .. index:: pair: variable; subtype .. _doxid-structasn__type_1a6c9575b8f506cbaaf3824d2889dff5c7: .. ref-code-block:: cpp :class: doxyrest-title-code-block const asn_type* subtype for syntaxes \*_OF and TAGGED .. index:: pair: variable; enum_entries .. _doxid-structasn__type_1ae2814f2b37ec8ee9f5b87f9edcbad68d: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`asn_enum_entry_t`* enum_entries for syntax ENUMERATED