:orphan: .. index:: pair: struct; asn_value .. _doxid-structasn__value: struct asn_value ================ .. toctree:: :hidden: Overview ~~~~~~~~ ASN.1 Value internal presentation :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct asn_value { // fields const :ref:`asn_type`* :ref:`asn_type`; :ref:`asn_tag_t` :ref:`tag`; :ref:`asn_syntax` :ref:`syntax`; char* :ref:`name`; size_t :ref:`len`; int :ref:`integer`; asn_value** :ref:`array`; void* :ref:`other`; union asn_value::@6 :ref:`data`; int :target:`mark`; int :ref:`txt_len`; int :target:`c_indent`; int :target:`c_lines`; char* :ref:`path`; }; .. _details-structasn__value: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ ASN.1 Value internal presentation Fields ------ .. index:: pair: variable; asn_type .. _doxid-structasn__value_1a984901a06462888094a327b1f76eff04: .. ref-code-block:: cpp :class: doxyrest-title-code-block const :ref:`asn_type`* asn_type ASN.1 type of value. .. index:: pair: variable; tag .. _doxid-structasn__value_1a59811384b0d52e2d6e93f004654dc497: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`asn_tag_t` tag ASN.1 tag of value. .. index:: pair: variable; syntax .. _doxid-structasn__value_1a5e32a29f78e7240dd0907b4c92a9b2f6: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`asn_syntax` syntax ASN.1 syntax of value. .. index:: pair: variable; name .. _doxid-structasn__value_1a9337bd5f1bdf163f61035d5c24bd49d5: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* name Name of value itself or field label, may be NULL or empty string. .. index:: pair: variable; len .. _doxid-structasn__value_1ab46b499bb4a46522ccca01f85e77e5be: .. ref-code-block:: cpp :class: doxyrest-title-code-block size_t len length of value. semantic is depended on syntax: * primitive syntax: #. INTEGER zero for usual native 'int' or number of bits used. #. LONG_INT, CHAR_STRING, OCT_STRING, REAL number of used octets; #. OBJECT IDENTIFIER number of sub-ids, which sub-id has usual for current architecture size of 'int'; #. BIT_STRING number of bits; * compound syntax: number of sub-values, This field should be one or zero (for non-complete values) for CHOICE and TAGGED syntaxes. .. index:: pair: variable; integer .. _doxid-structasn__value_1ab6f05736cd5b5efa4253a011e4b76f91: .. ref-code-block:: cpp :class: doxyrest-title-code-block int integer for INTEGER-based syntaxes .. index:: pair: variable; array .. _doxid-structasn__value_1a5f62f1c769788537c028638a9f0ef752: .. ref-code-block:: cpp :class: doxyrest-title-code-block asn_value** array for COMPOUND syntaxes .. index:: pair: variable; other .. _doxid-structasn__value_1a5fe684ec6d2c56440b0d9e1d844a79cd: .. ref-code-block:: cpp :class: doxyrest-title-code-block void* other Other syntaxes: octet and character strings, long ints, etc. Pointer is casted explicitly in internal sources. .. index:: pair: variable; data .. _doxid-structasn__value_1a87464d4465aec47833be9928eed81de9: .. ref-code-block:: cpp :class: doxyrest-title-code-block unnamed-union data Syntax-specific data .. index:: pair: variable; txt_len .. _doxid-structasn__value_1a5b14a146e6f7b1865dc72f47bc4603cc: .. ref-code-block:: cpp :class: doxyrest-title-code-block int txt_len Length of textual presentation of value, may be unknown, this is denoted by -1. Zero value means incomplete value. .. index:: pair: variable; path .. _doxid-structasn__value_1a67e608d3962dba8ac3c4d03bde9ae2df: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* path Path to this value from root of some container. It is valid ONLY inside asn_walk_depth function. Root container is a container which was passed to asn_walk_depth. Use asn_get_value_path from walk_func to obtain this path