summaryrefslogtreecommitdiff
path: root/doc/texi/structure.c.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/texi/structure.c.texi')
-rw-r--r--doc/texi/structure.c.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/texi/structure.c.texi b/doc/texi/structure.c.texi
index fd3f6c8..77c743b 100644
--- a/doc/texi/structure.c.texi
+++ b/doc/texi/structure.c.texi
@@ -35,7 +35,7 @@ to NULL.
@deftypefun {int} {asn1_delete_structure2} (asn1_node * @var{structure}, unsigned int @var{flags})
@var{structure}: pointer to the structure that you want to delete.
-@var{flags}: additional flags (see @code{ASN1_DELETE_FLAG} )
+@var{flags}: additional flags (see @code{ASN1_DELETE_FLAG_ZEROIZE} )
Deletes the structure * @code{structure} . At the end, * @code{structure} is set
to NULL.
@@ -60,7 +60,7 @@ the @code{element_name} was not found.
@subheading asn1_create_element
@anchor{asn1_create_element}
-@deftypefun {int} {asn1_create_element} (asn1_node @var{definitions}, const char * @var{source_name}, asn1_node * @var{element})
+@deftypefun {int} {asn1_create_element} (asn1_node_const @var{definitions}, const char * @var{source_name}, asn1_node * @var{element})
@var{definitions}: pointer to the structure returned by "parser_asn1" function
@var{source_name}: the name of the type of the new structure (must be
@@ -79,7 +79,7 @@ rc = asn1_create_element(cert_def, "PKIX1.Certificate", certptr);
@subheading asn1_print_structure
@anchor{asn1_print_structure}
-@deftypefun {void} {asn1_print_structure} (FILE * @var{out}, asn1_node @var{structure}, const char * @var{name}, int @var{mode})
+@deftypefun {void} {asn1_print_structure} (FILE * @var{out}, asn1_node_const @var{structure}, const char * @var{name}, int @var{mode})
@var{out}: pointer to the output file (e.g. stdout).
@var{structure}: pointer to the structure that you want to visit.
@@ -96,7 +96,7 @@ from the @code{name} element inside the structure @code{structure} .
@subheading asn1_number_of_elements
@anchor{asn1_number_of_elements}
-@deftypefun {int} {asn1_number_of_elements} (asn1_node @var{element}, const char * @var{name}, int * @var{num})
+@deftypefun {int} {asn1_number_of_elements} (asn1_node_const @var{element}, const char * @var{name}, int * @var{num})
@var{element}: pointer to the root of an ASN1 structure.
@var{name}: the name of a sub-structure of ROOT.
@@ -112,7 +112,7 @@ names equal to "?1","?2", ...
@subheading asn1_find_structure_from_oid
@anchor{asn1_find_structure_from_oid}
-@deftypefun {const char *} {asn1_find_structure_from_oid} (asn1_node @var{definitions}, const char * @var{oidValue})
+@deftypefun {const char *} {asn1_find_structure_from_oid} (asn1_node_const @var{definitions}, const char * @var{oidValue})
@var{definitions}: ASN1 definitions
@var{oidValue}: value of the OID to search (e.g. "1.2.3.4").
@@ -126,7 +126,7 @@ the OID.
@subheading asn1_copy_node
@anchor{asn1_copy_node}
-@deftypefun {int} {asn1_copy_node} (asn1_node @var{dst}, const char * @var{dst_name}, asn1_node @var{src}, const char * @var{src_name})
+@deftypefun {int} {asn1_copy_node} (asn1_node @var{dst}, const char * @var{dst_name}, asn1_node_const @var{src}, const char * @var{src_name})
@var{dst}: Destination asn1 node.
@var{dst_name}: Field name in destination node.
@@ -143,7 +143,7 @@ function requires @code{dst} to be expanded using @code{asn1_create_element()}
@subheading asn1_dup_node
@anchor{asn1_dup_node}
-@deftypefun {asn1_node} {asn1_dup_node} (asn1_node @var{src}, const char * @var{src_name})
+@deftypefun {asn1_node} {asn1_dup_node} (asn1_node_const @var{src}, const char * @var{src_name})
@var{src}: Source asn1 node.
@var{src_name}: Field name in source node.