Fixed minor typos. Converted PDU tables.
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 20 Jul 2001 21:34:36 +0000 (21:34 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 20 Jul 2001 21:34:36 +0000 (21:34 +0000)
doc/Makefile.am
doc/asn.xml
doc/frontend.xml
doc/indexdata.xml
doc/odr.xml
doc/tools.xml

index b217793..f43dad3 100644 (file)
@@ -1,4 +1,4 @@
-## $Id: Makefile.am,v 1.12 2001-07-19 12:46:57 adam Exp $
+## $Id: Makefile.am,v 1.13 2001-07-20 21:34:36 adam Exp $
 
 docdir=$(pkgdatadir)/doc
 
@@ -44,5 +44,10 @@ $(srcdir)/book1.html: $(XMLFILES) $(srcdir)/yazhtml.dsl
 $(srcdir)/book1.php: $(XMLFILES) $(srcdir)/yazphp.dsl
        cd $(srcdir); jade -E14 -d yazphp.dsl -t sgml xml.dcl yaz.xml
 
+$(srcdir)/yaz.pdf: $(srcdir)/yaz.tex
+       pdfjadetex yaz.tex
+       pdfjadetex yaz.tex
+       pdfjadetex yaz.tex
+
 $(srcdir)/yaz.tex: $(XMLFILES) $(srcdir)/yazprint.dsl
        cd $(srcdir); jade -d yazprint.dsl -t tex xml.dcl yaz.xml
index e126267..36da812 100644 (file)
-<!-- $Id: asn.xml,v 1.4 2001-07-19 23:29:40 adam Exp $ -->
- <chapter><title>The ASN Module</title>
-  <sect1><title>Introduction</title>
-   <para>
-    The &asn; module provides you with a set of C struct definitions for the
-    various PDUs of the protocol, as well as for the complex types
-    appearing within the PDUs. For the primitive data types, the C
-    representation often takes the form of an ordinary C language type,
-    such as <literal>int</literal>. For ASN.1 constructs that have no direct
-    representation in C, such as general octet strings and bit strings,
-    the &odr; module (see section <link linkend="odr">The ODR Module</link>)
-    provides auxiliary definitions.
-   </para>
-  </sect1>
-  <sect1><title>Preparing PDUs</title>
-
-   <para>
-    A structure representing a complex ASN.1 type doesn't in itself contain the
-    members of that type. Instead, the structure contains
-    <emphasis>pointers</emphasis> to the members of the type.
-    This is necessary, in part, to allow a mechanism for specifying which
-    of the optional structure (SEQUENCE) members are present, and which
-    are not. It follows that you will need to somehow provide space for
-    the individual members of the structure, and set the pointers to
-    refer to the members.
-   </para>
-   <para>
-    The conversion routines don't care how you allocate and maintain your
-    C structures - they just follow the pointers that you provide.
-    Depending on the complexity of your application, and your personal
-    taste, there are at least three different approaches that you may take
-    when you allocate the structures.
-   </para>
-
-   <para>
-    You can use static or automatic local variables in the function that
-    prepares the PDU. This is a simple approach, and it provides the most
-    efficient form of memory management. While it works well for flat
-    PDUs like the InitReqest, it will generally not be sufficient for say,
-    the generation of an arbitrarily complex RPN query structure.
-   </para>
-   <para>
-    You can individually create the structure and its members using the
-    <function>malloc(2)</function> function. If you want to ensure that
-    the data is freed when it is no longer needed, you will have to
-    define a function that individually releases each member of a
-    structure before freeing the structure itself.
-   </para>
-   <para>
-    You can use the <function>odr_malloc()</function> function (see section 
-    <link linkend="odr-use">Using ODR</link> for details). When you use
-    <function>odr_malloc()</function>, you can release all of the
-    allocated data in a single operation, independent of any pointers and
-    relations between the data. <function>odr_malloc()</function> is based on a
-    &quot;nibble-memory&quot;
-    scheme, in which large portions of memory are allocated, and then
-    gradually handed out with each call to <function>odr_malloc()</function>.
-    The next time you call <function>odr_reset()</function>, all of the
-    memory allocated since the last call is recycled for future use (actually,
-    it is placed on a free-list).
-   </para>
-   <para>
-    You can combine all of the methods described here. This will often be
-    the most practical approach. For instance, you might use
-    <function>odr_malloc()</function> to allocate an entire structure and
-    some of its elements, while you leave other elements pointing to global
-    or per-session default variables.
-   </para>
-
-   <para>
-    The &asn; module provides an important aid in creating new PDUs. For
-    each of the PDU types (say, <function>Z_InitRequest</function>), a
-    function is provided that allocates and initializes an instance of
-    that PDU type for you. In the case of the InitRequest, the function is
-    simply named <function>zget_InitRequest()</function>, and it sets up
-    reasonable default value for all of the mandatory members. The optional
-    members are generally initialized to null pointers. This last aspect
-    is very important: it ensures that if the PDU definitions are
-    extended after you finish your implementation (to accommodate
-    new versions of the protocol, say), you won't get into trouble with
-    uninitialized pointers in your structures. The functions use
-    <function>odr_malloc()</function> to
-    allocate the PDUs and its members, so you can free everything again with a
-    single call to <function>odr_reset()</function>. We strongly recommend
-    that you use the <literal>zget_*</literal>
-    functions whenever you are preparing a PDU (in a C++ API, the
-    <literal>zget_</literal>
-    functions would probably be promoted to constructors for the
-    individual types).
-   </para>
-   <para>
-    The prototype for the individual PDU types generally look like this:
-   </para>
-   <synopsis>
+<!-- $Id: asn.xml,v 1.5 2001-07-20 21:34:36 adam Exp $ -->
+<chapter><title>The ASN Module</title>
+ <sect1><title>Introduction</title>
+  <para>
+   The &asn; module provides you with a set of C struct definitions for the
+   various PDUs of the protocol, as well as for the complex types
+   appearing within the PDUs. For the primitive data types, the C
+   representation often takes the form of an ordinary C language type,
+   such as <literal>int</literal>. For ASN.1 constructs that have no direct
+   representation in C, such as general octet strings and bit strings,
+   the &odr; module (see section <link linkend="odr">The ODR Module</link>)
+   provides auxiliary definitions.
+  </para>
+ </sect1>
+ <sect1><title>Preparing PDUs</title>
+  
+  <para>
+   A structure representing a complex ASN.1 type doesn't in itself contain the
+   members of that type. Instead, the structure contains
+   <emphasis>pointers</emphasis> to the members of the type.
+   This is necessary, in part, to allow a mechanism for specifying which
+   of the optional structure (SEQUENCE) members are present, and which
+   are not. It follows that you will need to somehow provide space for
+   the individual members of the structure, and set the pointers to
+   refer to the members.
+  </para>
+  <para>
+   The conversion routines don't care how you allocate and maintain your
+   C structures - they just follow the pointers that you provide.
+   Depending on the complexity of your application, and your personal
+   taste, there are at least three different approaches that you may take
+   when you allocate the structures.
+  </para>
+  
+  <para>
+   You can use static or automatic local variables in the function that
+   prepares the PDU. This is a simple approach, and it provides the most
+   efficient form of memory management. While it works well for flat
+   PDUs like the InitReqest, it will generally not be sufficient for say,
+   the generation of an arbitrarily complex RPN query structure.
+  </para>
+  <para>
+   You can individually create the structure and its members using the
+   <function>malloc(2)</function> function. If you want to ensure that
+   the data is freed when it is no longer needed, you will have to
+   define a function that individually releases each member of a
+   structure before freeing the structure itself.
+  </para>
+  <para>
+   You can use the <function>odr_malloc()</function> function (see section 
+   <link linkend="odr-use">Using ODR</link> for details). When you use
+   <function>odr_malloc()</function>, you can release all of the
+   allocated data in a single operation, independent of any pointers and
+   relations between the data. <function>odr_malloc()</function> is based on a
+   &quot;nibble-memory&quot;
+   scheme, in which large portions of memory are allocated, and then
+   gradually handed out with each call to <function>odr_malloc()</function>.
+   The next time you call <function>odr_reset()</function>, all of the
+   memory allocated since the last call is recycled for future use (actually,
+   it is placed on a free-list).
+  </para>
+  <para>
+   You can combine all of the methods described here. This will often be
+   the most practical approach. For instance, you might use
+   <function>odr_malloc()</function> to allocate an entire structure and
+   some of its elements, while you leave other elements pointing to global
+   or per-session default variables.
+  </para>
+  
+  <para>
+   The &asn; module provides an important aid in creating new PDUs. For
+   each of the PDU types (say, <function>Z_InitRequest</function>), a
+   function is provided that allocates and initializes an instance of
+   that PDU type for you. In the case of the InitRequest, the function is
+   simply named <function>zget_InitRequest()</function>, and it sets up
+   reasonable default value for all of the mandatory members. The optional
+   members are generally initialized to null pointers. This last aspect
+   is very important: it ensures that if the PDU definitions are
+   extended after you finish your implementation (to accommodate
+   new versions of the protocol, say), you won't get into trouble with
+   uninitialized pointers in your structures. The functions use
+   <function>odr_malloc()</function> to
+   allocate the PDUs and its members, so you can free everything again with a
+   single call to <function>odr_reset()</function>. We strongly recommend
+   that you use the <literal>zget_*</literal>
+   functions whenever you are preparing a PDU (in a C++ API, the
+   <literal>zget_</literal>
+   functions would probably be promoted to constructors for the
+   individual types).
+  </para>
+  <para>
+   The prototype for the individual PDU types generally look like this:
+  </para>
+  <synopsis>
     Z_&lt;type> *zget_&lt;type>(ODR o);
-   </synopsis>
+  </synopsis>
 
-   <para>
+  <para>
     eg.:
-   </para>
+  </para>
 
-   <synopsis>
+  <synopsis>
     Z_InitRequest *zget_InitRequest(ODR o);
-   </synopsis>
-
-   <para>
-    The &odr; handle should generally be your encoding stream, but it needn't be.
-   </para>
-   <para>
-    As well as the individual PDU functions, a function <function>
-     zget_APDU()</function> is
-    provided, which allocates a toplevel Z-APDU of the type requested:
-   </para>
-
-   <synopsis>
+  </synopsis>
+
+  <para>
+   The &odr; handle should generally be your encoding stream, but it
+   needn't be.
+  </para>
+  <para>
+   As well as the individual PDU functions, a function
+   <function>zget_APDU()</function> is provided, which allocates
+   a toplevel Z-APDU of the type requested:
+  </para>
+
+  <synopsis>
     Z_APDU *zget_APDU(ODR o, int which);
-   </synopsis>
-
-   <para>
-    The <varname>which</varname> parameter is (of course) the discriminator
-    belonging to the <varname>Z_APDU</varname> <literal>CHOICE</literal> type.
-    All of the interface described here is provided by the &asn; module, and
-    you access it through the <filename>proto.h</filename> header file.
-
-   </para>
-  </sect1>
-  <sect1><title id="oid">Object Identifiers</title>
-   <para>
-    When you refer to object identifiers in your application, you need to
-    be aware that SR and Z39.50 use two different set of OIDs to refer to
-    the same objects. To handle this easily, &yaz; provides a utility module
-    to &asn; which provides an internal representation of the OIDs used in
-    both protocols. Each oid is described by a structure:
-   </para>
-
-   <screen>
+  </synopsis>
+
+  <para>
+   The <varname>which</varname> parameter is (of course) the discriminator
+   belonging to the <varname>Z_APDU</varname> <literal>CHOICE</literal> type.
+   All of the interface described here is provided by the &asn; module, and
+   you access it through the <filename>proto.h</filename> header file.
+
+  </para>
+ </sect1>
+ <sect1><title id="oid">Object Identifiers</title>
+  <para>
+   When you refer to object identifiers in your application, you need to
+   be aware that SR and Z39.50 use two different set of OIDs to refer to
+   the same objects. To handle this easily, &yaz; provides a utility module
+   to &asn; which provides an internal representation of the OIDs used in
+   both protocols. Each oid is described by a structure:
+  </para>
+
+  <screen>
 typedef struct oident
 {
     enum oid_proto proto;
@@ -142,63 +143,63 @@ typedef struct oident
     int oidsuffix[OID_SIZE];
     char *desc;
 } oident;
-   </screen>
-
-   <para>
-    The <literal>proto</literal> field can be set to either
-    <literal>PROTO_SR</literal> or <literal>PROTO_Z3950</literal>.
-    The <literal>class</literal> might be, say,
-    <literal>CLASS_RECSYN</literal>, and the <literal>value</literal> might be
+  </screen>
+  
+  <para>
+   The <literal>proto</literal> field can be set to either
+   <literal>PROTO_SR</literal> or <literal>PROTO_Z3950</literal>.
+   The <literal>class</literal> might be, say,
+   <literal>CLASS_RECSYN</literal>, and the <literal>value</literal> might be
     <literal>VAL_USMARC</literal> for the USMARC record format. Functions
-   </para>
-
-   <screen>
+  </para>
+  
+  <screen>
 int *oid_ent_to_oid(struct oident *ent, int *dst);
 struct oident *oid_getentbyoid(int *o);
-   </screen>
-
+  </screen>
+  
+  <para>
+   are provided to map between object identifiers and database entries.
+   If you store a member of the <literal>oid_proto</literal> type in
+   your association state information, it's a simple matter, at runtime,
+   to generate the correct OID when you need it. For decoding, you can
+   simply ignore the proto field, or if you're strict, you can verify
+   that your peer is using the OID family from the correct protocol.
+   The <literal>desc</literal> field is a short, human-readable name
+   for the PDU, useful mainly for diagnostic output.
+  </para>
+  
+  <note>
    <para>
-    are provided to map between object identifiers and database entries.
-    If you store a member of the <literal>oid_proto</literal> type in
-    your association state information, it's a simple matter, at runtime,
-    to generate the correct OID when you need it. For decoding, you can
-    simply ignore the proto field, or if you're strict, you can verify
-    that your peer is using the OID family from the correct protocol.
-    The <literal>desc</literal> field is a short, human-readable name
-    for the PDU, useful mainly for diagnostic output.
+    The old function <function>oid_getoidbyent</function> still exists but
+    is not thread safe. Use <function>oid_ent_to_oid</function> instead
+    and pass an array of size <literal>OID_SIZE</literal>.
    </para>
-
-   <note>
-    <para>
-     The old function <function>oid_getoidbyent</function> still exists but is
-     not thread safe. Use <function>oid_ent_to_oid</function> instead
-     and pass an array of size <literal>OID_SIZE</literal>.
-    </para>
-   </note>
-
-   <note>
-    <para>
-     Plans are underway to merge the two protocols into a single
-     definition, with one set of object identifiers. When this happens, the
-     oid module will no longer be required to support protocol
-     independence, but it should still be useful as a simple OID database.
-    </para>
-   </note>
-
-  </sect1>
-  <sect1><title>EXTERNAL Data</title>
-
+  </note>
+  
+  <note>
    <para>
-    In order to achieve extensibility and adaptability to different
-    application domains, the new version of the protocol defines many
-    structures outside of the main ASN.1 specification, referencing them
-    through ASN.1 EXTERNAL constructs. To simplify the construction and access
-    to the externally referenced data, the &asn; module defines a
-    specialized version of the EXTERNAL construct, called
-    <literal>Z_External</literal>.It is defined thus:
+    Plans are underway to merge the two protocols into a single
+    definition, with one set of object identifiers. When this happens, the
+    oid module will no longer be required to support protocol
+    independence, but it should still be useful as a simple OID database.
    </para>
-
-   <screen>
+  </note>
+  
+ </sect1>
+ <sect1><title>EXTERNAL Data</title>
+
+  <para>
+   In order to achieve extensibility and adaptability to different
+   application domains, the new version of the protocol defines many
+   structures outside of the main ASN.1 specification, referencing them
+   through ASN.1 EXTERNAL constructs. To simplify the construction and
+   access to the externally referenced data, the &asn; module defines a
+   specialized version of the EXTERNAL construct, called
+   <literal>Z_External</literal>.It is defined thus:
+  </para>
+  
+  <screen>
 typedef struct Z_External
 {
     Odr_oid *direct_reference;
@@ -237,501 +238,817 @@ typedef struct Z_External
 
     } u;
 } Z_External;
-   </screen>
-
-   <para>
-    When decoding, the &asn; module will attempt to determine which
-    syntax describes the data by looking at the reference fields
-    (currently only the direct-reference). For ASN.1 structured data, you
-    need only consult the <literal>which</literal> field to determine the
-    type of data. You can the access  the data directly through the union.
-    When constructing data for encoding, you set the union pointer to point
-    to the data, and set the <literal>which</literal> field accordingly.
+  </screen>
+  
+  <para>
+   When decoding, the &asn; module will attempt to determine which
+   syntax describes the data by looking at the reference fields
+   (currently only the direct-reference). For ASN.1 structured data, you
+   need only consult the <literal>which</literal> field to determine the
+   type of data. You can the access  the data directly through the union.
+   When constructing data for encoding, you set the union pointer to point
+   to the data, and set the <literal>which</literal> field accordingly.
     Remember also to set the direct (or indirect) reference to the correct
-    OID for the data type.
-    For non-ASN.1 data such as MARC records, use the
-    <literal>octet_aligned</literal> arm of the union.
-   </para>
-
-   <para>
-    Some servers return ASN.1 structured data values (eg. database
-    records) as BER-encoded records placed in the
-    <literal>octet-aligned</literal> branch of the EXTERNAL CHOICE.
-    The ASN-module will <emphasis>not</emphasis> automatically decode
-    these records. To help you decode the records in the application, the
-    function
-   </para>
-
-   <screen>
-    Z_ext_typeent *z_ext_gettypebyref(oid_value ref);
-   </screen>
-
-   <para>
-    Can be used to retrieve information about the known, external data
-    types. The function return a pointer to a static area, or NULL, if no
-    match for the given direct reference is found. The
-    <literal>Z_ext_typeent</literal>
-    is defined as:
-   </para>
-
-   <screen>
+   OID for the data type.
+   For non-ASN.1 data such as MARC records, use the
+   <literal>octet_aligned</literal> arm of the union.
+  </para>
+  
+  <para>
+   Some servers return ASN.1 structured data values (eg. database
+   records) as BER-encoded records placed in the
+   <literal>octet-aligned</literal> branch of the EXTERNAL CHOICE.
+   The ASN-module will <emphasis>not</emphasis> automatically decode
+   these records. To help you decode the records in the application, the
+   function
+  </para>
+
+  <screen>
+   Z_ext_typeent *z_ext_gettypebyref(oid_value ref);
+  </screen>
+
+  <para>
+   Can be used to retrieve information about the known, external data
+   types. The function return a pointer to a static area, or NULL, if no
+   match for the given direct reference is found. The
+   <literal>Z_ext_typeent</literal>
+   is defined as:
+  </para>
+  
+  <screen>
 typedef struct Z_ext_typeent
 {
     oid_value dref;    /* the direct-reference OID value. */
     int what;          /* discriminator value for the external CHOICE */
     Odr_fun fun;       /* decoder function */
 } Z_ext_typeent;
-   </screen>
-
-   <para>
-    The <literal>what</literal> member contains the
-    <literal>Z_External</literal> union discriminator value for the
-    given type: For the SUTRS record syntax, the value would be
-    <literal>Z_External_sutrs</literal>.
-    The <literal>fun</literal> member contains a pointer to the
-    function which encodes/decodes the given type. Again, for the SUTRS
-    record syntax, the value of <literal>fun</literal> would be
-    <literal>z_SUTRS</literal> (a function pointer).
+  </screen>
+  
+  <para>
+   The <literal>what</literal> member contains the
+   <literal>Z_External</literal> union discriminator value for the
+   given type: For the SUTRS record syntax, the value would be
+   <literal>Z_External_sutrs</literal>.
+   The <literal>fun</literal> member contains a pointer to the
+   function which encodes/decodes the given type. Again, for the SUTRS
+   record syntax, the value of <literal>fun</literal> would be
+   <literal>z_SUTRS</literal> (a function pointer).
    </para>
-
-   <para>
-    If you receive an EXTERNAL which contains an octet-string value that
-    you suspect of being an ASN.1-structured data value, you can use
-    <literal>z_ext_gettypebyref</literal> to look for the provided
-    direct-reference.
-    If the return value is different from NULL, you can use the provided
-    function to decode the BER string (see section <link linkend="odr-use">
-     Using ODR</link>).
-   </para>
-
+  
+  <para>
+   If you receive an EXTERNAL which contains an octet-string value that
+   you suspect of being an ASN.1-structured data value, you can use
+   <literal>z_ext_gettypebyref</literal> to look for the provided
+   direct-reference.
+   If the return value is different from NULL, you can use the provided
+   function to decode the BER string (see section <link linkend="odr-use">
+    Using ODR</link>).
+  </para>
+  
+  <para>
+   If you want to <emphasis>send</emphasis> EXTERNALs containing
+   ASN.1-structured values in the occtet-aligned branch of the CHOICE, this
+   is possible too. However, on the encoding phase, it requires a somewhat
+   involved juggling around of the various buffers involved.
+  </para>
+  <para>
+   If you need to add new, externally defined data types, you must update
+   the struct above, in the source file <filename>prt-ext.h</filename>, as
+   well as the encoder/decoder in the file <filename>prt-ext.c</filename>.
+   When changing the latter, remember to update both the
+   <literal>arm</literal> arrary and the list
+   <literal>type_table</literal>, which drives the CHOICE biasing that
+   is necessary to tell the different, structured types apart
+   on decoding.
+  </para>
+  
+  <note>
    <para>
-    If you want to <emphasis>send</emphasis> EXTERNALs containing
-    ASN.1-structured values in the occtet-aligned branch of the CHOICE, this
-    is possible too. However, on the encoding phase, it requires a somewhat
-    involved juggling around of the various buffers involved.
+    Eventually, the EXTERNAL processing will most likely
+    automatically insert the correct OIDs or indirect-refs. First,
+    however, we need to determine how application-context management
+    (specifically the presentation-context-list) should fit into the
+    various modules.
    </para>
-   <para>
-    If you need to add new, externally defined data types, you must update
-    the struct above, in the source file <filename>prt-ext.h</filename>, as
-    well as the encoder/decoder in the file <filename>prt-ext.c</filename>.
-    When changing the latter, remember to update both the <literal>arm</literal>
-    arrary and the list <literal>type_table</literal>, which drives the CHOICE
-    biasing that is necessary to tell the different, structured types apart
-    on decoding.
-   </para>
-
-   <note>
-    <para>
-     Eventually, the EXTERNAL processing will most likely
-     automatically insert the correct OIDs or indirect-refs. First,
-     however, we need to determine how application-context management
-     (specifically the presentation-context-list) should fit into the
-     various modules.
-    </para>
-   </note>
-
-  </sect1>
-  <sect1><title>PDU Contents Table</title>
-
-   <para>
-    We include, for reference, a listing of the fields of each top-level
-    PDU, as well as their default settings.
-   </para>
-
-   <table frame="top"><title>Default settings for PDU Initialize Request</title>
-    <tgroup cols="3">
-     <colspec colname="field"></colspec>
-     <colspec colname="type"></colspec>
-     <colspec colname="value"></colspec>
-     <thead>
-      <row>
-       <entry>Field</entry>
-       <entry>Type</entry>
-       <entry>Default Value</entry>
-      </row>
-     </thead>
-     <tbody>
-
-      <row><entry>
-       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       protocolVersion</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
-       </entry></row>
-
-      <row><entry>
-       options</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
-       </entry></row>
-
-      <row><entry>
-       preferredMessageSize</entry><entry>int</entry><entry>30*1024
-       </entry></row>
-
-      <row><entry>
-       maximumRecordSize</entry><entry>int</entry><entry>30*1024
-       </entry></row>
-
-      <row><entry>
-       idAuthentication</entry><entry>Z_IdAuthentication</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       implementationId</entry><entry>char*</entry><entry>"YAZ (id=81)"
-       </entry></row>
-
-      <row><entry>
-       implementationName</entry><entry>char*</entry><entry>"Index Data/YAZ"
-       </entry></row>
-
-      <row><entry>
-       implementationVersion</entry><entry>char*</entry><entry>YAZ_VERSION
-       </entry></row>
-
-      <row><entry>
-       userInformationField</entry><entry>Z_UserInformation</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
-       </entry></row>
-
-     </tbody>
-    </tgroup>
-   </table>
-
-   <table frame="top"><title>Default settings for PDU Initialize Response</title>
-    <tgroup cols="3">
-     <colspec colname="field"></colspec>
-     <colspec colname="type"></colspec>
-     <colspec colname="value"></colspec>
-     <thead>
-      <row>
-       <entry>Field</entry>
-       <entry>Type</entry>
-       <entry>Default Value</entry>
-      </row>
-     </thead>
-     <tbody>
-
-      <row><entry>
-       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       protocolVersion</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
-       </entry></row>
-
-      <row><entry>
-       options</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
-       </entry></row>
-
-      <row><entry>
-       preferredMessageSize</entry><entry>int</entry><entry>30*1024
-       </entry></row>
-
-      <row><entry>
-       maximumRecordSize</entry><entry>int</entry><entry>30*1024
-       </entry></row>
-
-      <row><entry>
-       result</entry><entry>bool_t</entry><entry>TRUE
-       </entry></row>
-
-      <row><entry>
-       implementationId</entry><entry>char*</entry><entry>"YAZ (id=81)"
-       </entry></row>
-
-      <row><entry>
-       implementationName</entry><entry>char*</entry><entry>"Index Data/YAZ"
-       </entry></row>
-
-      <row><entry>
-       implementationVersion</entry><entry>char*</entry><entry>YAZ_VERSION
-       </entry></row>
-
-      <row><entry>
-       userInformationField</entry><entry>Z_UserInformation</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
-       </entry></row>
-
-     </tbody>
-    </tgroup>
-   </table>
-
-   <table frame="top"><title>Default settings for PDU Search Request</title>
-    <tgroup cols="3">
-     <colspec colname="field"></colspec>
-     <colspec colname="type"></colspec>
-     <colspec colname="value"></colspec>
-     <thead>
-      <row>
-       <entry>Field</entry>
-       <entry>Type</entry>
-       <entry>Default Value</entry>
-      </row>
-     </thead>
-     <tbody>
-
-      <row><entry>
-       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       smallSetUpperBound</entry><entry>int</entry><entry>0
-       </entry></row>
-
-      <row><entry>
-       largeSetLowerBound</entry><entry>int</entry><entry>1
-       </entry></row>
-
-      <row><entry>
-       mediumSetPresentNumber</entry><entry>int</entry><entry>0
-       </entry></row>
-
-      <row><entry>
-       replaceIndicator</entry><entry>bool_t</entry><entry>TRUE
-       </entry></row>
-
-      <row><entry>
-       resultSetName</entry><entry>char *</entry><entry>"default"
-       </entry></row>
-
-      <row><entry>
-       num_databaseNames</entry><entry>int</entry><entry>0
-       </entry></row>
-
-      <row><entry>
-       databaseNames</entry><entry>char **</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       smallSetElementSetNames</entry><entry>Z_ElementSetNames</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       mediumSetElementSetNames</entry><entry>Z_ElementSetNames</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       preferredRecordSyntax</entry><entry>Odr_oid</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       query</entry><entry>Z_Query</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       additionalSearchInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
-       </entry></row>
-
-      <row><entry>
-       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
-       </entry></row>
-
-     </tbody>
-    </tgroup>
-   </table>
-
-   <screen>
-    Z_SearchResponse
-    ----------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    resultCount                  int                 0
-    numberOfRecordsReturned      int                 0
-    nextResultSetPosition        int                 0
-    searchStatus                 bool_t              TRUE
-    resultSetStatus              int                 NULL
-    presentStatus                int                 NULL
-    records                      Z_Records           NULL
-    additionalSearchInfo         Z_OtherInformation  NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_PresentRequest
-    ----------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    resultSetId                  char*               "default"
-    resultSetStartPoint          int                 1
-    numberOfRecordsRequested     int                 10
-    num_ranges                   int                 0
-    additionalRanges             Z_Range             NULL
-    recordComposition            Z_RecordComposition NULL
-    preferredRecordSyntax        Odr_oid             NULL
-    maxSegmentCount              int                 NULL
-    maxRecordSize                int                 NULL
-    maxSegmentSize               int                 NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_PresentResponse
-    -----------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    numberOfRecordsReturned      int                 0
-    nextResultSetPosition        int                 0
-    presentStatus                int                 Z_PRES_SUCCESS
-    records                      Z_Records           NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_DeleteResultSetRequest
-    ------------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    deleteFunction               int                 Z_DeleteRequest_list
-    num_ids                      int                 0
-    resultSetList                char**              NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_DeleteResultSetResponse
-    -------------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    deleteOperationStatus        int                 Z_DeleteStatus_success
-    num_statuses                 int                 0
-    deleteListStatuses           Z_ListStatus**      NULL
-    numberNotDeleted             int                 NULL
-    num_bulkStatuses             int                 0
-    bulkStatuses                 Z_ListStatus        NULL
-    deleteMessage                char*               NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_ScanRequest
-    -------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    num_databaseNames            int                 0
-    databaseNames                char**              NULL
-    attributeSet                 Odr_oid             NULL
-    termListAndStartPoint        Z_AttributesPlus... NULL
-    stepSize                     int                 NULL
-    numberOfTermsRequested       int                 20
-    preferredPositionInResponse  int                 NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_ScanResponse
-    --------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    stepSize                     int                 NULL
-    scanStatus                   int                 Z_Scan_success
-    numberOfEntriesReturned      int                 0
-    positionOfTerm               int                 NULL
-    entries                      Z_ListEntris        NULL
-    attributeSet                 Odr_oid             NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_TriggerResourceControlRequest
-    -------------------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    requestedAction              int                 Z_TriggerResourceCtrl_resou..
-    prefResourceReportFormat     Odr_oid             NULL
-    resultSetWanted              bool_t              NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_ResourceControlRequest
-    ------------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    suspendedFlag                bool_t              NULL
-    resourceReport               Z_External          NULL
-    partialResultsAvailable      int                 NULL
-    responseRequired             bool_t              FALSE
-    triggeredRequestFlag         bool_t              NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_ResourceControlResponse
-    -------------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    continueFlag                 bool_t              TRUE
-    resultSetWanted              bool_t              NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_AccessControlRequest
-    ----------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    which                        enum                Z_AccessRequest_simpleForm;
-    u                            union               NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_AccessControlResponse
-    -----------------------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    which                        enum                Z_AccessResponse_simpleForm
-    u                            union               NULL
-    diagnostic                   Z_DiagRec           NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_Segment
-    ---------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    numberOfRecordsReturned      int                 value=0
-    num_segmentRecords           int                 0
-    segmentRecords               Z_NamePlusRecord    NULL
-    otherInfo                    Z_OtherInformation  NULL
-   </screen>
-
-   <screen>
-    Z_Close
-    -------
-    Field                        Type                Default value
-
-    referenceId                  Z_ReferenceId       NULL
-    closeReason                  int                 Z_Close_finished
-    diagnosticInformation        char*               NULL
-    resourceReportFormat         Odr_oid             NULL
-    resourceFormat               Z_External          NULL
-    otherInfo                    Z_OtherInformation  NULL
-
-   </screen>
-
-  </sect1>
- </chapter>
+  </note>
+  
+ </sect1>
+ <sect1><title>PDU Contents Table</title>
+  
+  <para>
+   We include, for reference, a listing of the fields of each top-level
+   PDU, as well as their default settings.
+  </para>
+  
+  <table frame="top"><title>Default settings for PDU Initialize Request</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       protocolVersion</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
+      </entry></row>
+     <row><entry>
+       options</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
+      </entry></row>
+     <row><entry>
+       preferredMessageSize</entry><entry>int</entry><entry>30*1024
+      </entry></row>
+     <row><entry>
+       maximumRecordSize</entry><entry>int</entry><entry>30*1024
+      </entry></row>
+     <row><entry>
+       idAuthentication</entry><entry>Z_IdAuthentication</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       implementationId</entry><entry>char*</entry><entry>"YAZ (id=81)"
+      </entry></row>
+     <row><entry>
+       implementationName</entry><entry>char*</entry><entry>"Index Data/YAZ"
+      </entry></row>
+     <row><entry>
+       implementationVersion</entry><entry>char*</entry><entry>YAZ_VERSION
+      </entry></row>
+     <row><entry>
+       userInformationField</entry><entry>Z_UserInformation</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for PDU Initialize
+    Response</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       protocolVersion</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
+      </entry></row>
+     <row><entry>
+       options</entry><entry>Odr_bitmask</entry><entry>Empty bitmask
+      </entry></row>
+     <row><entry>
+       preferredMessageSize</entry><entry>int</entry><entry>30*1024
+      </entry></row>
+     <row><entry>
+       maximumRecordSize</entry><entry>int</entry><entry>30*1024
+      </entry></row>
+     <row><entry>
+       result</entry><entry>bool_t</entry><entry>TRUE
+      </entry></row>
+     <row><entry>
+       implementationId</entry><entry>char*</entry><entry>"YAZ (id=81)"
+      </entry></row>
+     <row><entry>
+       implementationName</entry><entry>char*</entry><entry>"Index Data/YAZ"
+      </entry></row>
+     <row><entry>
+       implementationVersion</entry><entry>char*</entry><entry>YAZ_VERSION
+      </entry></row>
+     <row><entry>
+       userInformationField</entry><entry>Z_UserInformation</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for PDU Search Request</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       smallSetUpperBound</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       largeSetLowerBound</entry><entry>int</entry><entry>1
+      </entry></row>
+     <row><entry>
+       mediumSetPresentNumber</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       replaceIndicator</entry><entry>bool_t</entry><entry>TRUE
+      </entry></row>
+     <row><entry>
+       resultSetName</entry><entry>char *</entry><entry>"default"
+      </entry></row>
+     <row><entry>
+       num_databaseNames</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       databaseNames</entry><entry>char **</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       smallSetElementSetNames</entry><entry>Z_ElementSetNames
+      </entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       mediumSetElementSetNames</entry><entry>Z_ElementSetNames
+      </entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       preferredRecordSyntax</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       query</entry><entry>Z_Query</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       additionalSearchInfo</entry><entry>Z_OtherInformation
+      </entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for PDU Search Response</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resultCount</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       numberOfRecordsReturned</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       nextResultSetPosition</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       searchStatus</entry><entry>bool_t</entry><entry>TRUE
+      </entry></row>
+     <row><entry>
+       resultSetStatus</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       presentStatus</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       records</entry><entry>Z_Records</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       additionalSearchInfo</entry>
+      <entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for PDU Present Request</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resultSetId</entry><entry>char*</entry><entry>"default"
+      </entry></row>
+     <row><entry>
+       resultSetStartPoint</entry><entry>int</entry><entry>1
+      </entry></row>
+     <row><entry>
+       numberOfRecordsRequested</entry><entry>int</entry><entry>10
+      </entry></row>
+     <row><entry>
+       num_ranges</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       additionalRanges</entry><entry>Z_Range</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       recordComposition</entry><entry>Z_RecordComposition</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       preferredRecordSyntax</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       maxSegmentCount</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       maxRecordSize</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       maxSegmentSize</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+  
+  <table frame="top"><title>Default settings for PDU Present Response</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       numberOfRecordsReturned</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       nextResultSetPosition</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       presentStatus</entry><entry>int</entry><entry>Z_PRES_SUCCESS
+      </entry></row>
+     <row><entry>
+       records</entry><entry>Z_Records</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+  
+  <table frame="top"><title>Default settings for Delete Result Set Request
+   </title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>referenceId
+      </entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       deleteFunction</entry><entry>int</entry><entry>Z_DeleteRequest_list
+      </entry></row>
+     <row><entry>
+       num_ids</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       resultSetList</entry><entry>char**</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Delete Result Set Response
+   </title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       deleteOperationStatus</entry><entry>int</entry>
+      <entry>Z_DeleteStatus_success</entry></row>
+     <row><entry>
+       num_statuses</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       deleteListStatuses</entry><entry>Z_ListStatus**</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       numberNotDeleted</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       num_bulkStatuses</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       bulkStatuses</entry><entry>Z_ListStatus</entry><entry>NUL
+       L</entry></row>
+     <row><entry>
+       deleteMessage</entry><entry>char*</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Scan Request
+   </title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       num_databaseNames</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       databaseNames</entry><entry>char**</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       attributeSet</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       termListAndStartPoint</entry><entry>Z_AttributesPlus...
+      </entry><entry>NULL</entry></row>
+     <row><entry>
+       stepSize</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       numberOfTermsRequested</entry><entry>int</entry><entry>20
+      </entry></row>
+     <row><entry>
+       preferredPositionInResponse</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Scan Response
+   </title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       stepSize</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       scanStatus</entry><entry>int</entry><entry>Z_Scan_success
+      </entry></row>
+     <row><entry>
+       numberOfEntriesReturned</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       positionOfTerm</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       entries</entry><entry>Z_ListEntris</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       attributeSet</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Trigger Resource
+    Control Request </title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       requestedAction</entry><entry>int</entry><entry>
+       Z_TriggerResourceCtrl_resou..
+      </entry></row>
+     <row><entry>
+       prefResourceReportFormat</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resultSetWanted</entry><entry>bool_t</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+     
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Resource
+    Control Request</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       suspendedFlag</entry><entry>bool_t</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resourceReport</entry><entry>Z_External</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       partialResultsAvailable</entry><entry>int</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       responseRequired</entry><entry>bool_t</entry><entry>FALSE
+      </entry></row>
+     <row><entry>
+       triggeredRequestFlag</entry><entry>bool_t</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Resource
+    Control Response</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       continueFlag</entry><entry>bool_t</entry><entry>TRUE
+      </entry></row>
+     <row><entry>
+       resultSetWanted</entry><entry>bool_t</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+  
+  <table frame="top"><title>Default settings for Access
+    Control Request</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       which</entry><entry>enum</entry><entry>Z_AccessRequest_simpleForm;
+      </entry></row>
+     <row><entry>
+       u</entry><entry>union</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Access
+    Control Response</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       which</entry><entry>enum</entry><entry>Z_AccessResponse_simpleForm
+      </entry></row>
+     <row><entry>
+       u</entry><entry>union</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       diagnostic</entry><entry>Z_DiagRec</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Segment</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+     
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       numberOfRecordsReturned</entry><entry>int</entry><entry>value=0
+      </entry></row>
+     <row><entry>
+       num_segmentRecords</entry><entry>int</entry><entry>0
+      </entry></row>
+     <row><entry>
+       segmentRecords</entry><entry>Z_NamePlusRecord</entry><entry>NULL
+      </entry></row>
+     <row><entry>otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+    </tbody>
+   </tgroup>
+  </table>
+
+  <table frame="top"><title>Default settings for Close</title>
+   <tgroup cols="3">
+    <colspec colname="field"></colspec>
+    <colspec colname="type"></colspec>
+    <colspec colname="value"></colspec>
+    <thead>
+     <row>
+      <entry>Field</entry>
+      <entry>Type</entry>
+      <entry>Default Value</entry>
+     </row>
+    </thead>
+    <tbody>
+
+     <row><entry>
+       referenceId</entry><entry>Z_ReferenceId</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       closeReason</entry><entry>int</entry><entry>Z_Close_finished
+      </entry></row>
+     <row><entry>
+       diagnosticInformation</entry><entry>char*</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resourceReportFormat</entry><entry>Odr_oid</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       resourceFormat</entry><entry>Z_External</entry><entry>NULL
+      </entry></row>
+     <row><entry>
+       otherInfo</entry><entry>Z_OtherInformation</entry><entry>NULL
+      </entry></row>
+     
+    </tbody>
+   </tgroup>
+  </table>
+
+ </sect1>
+</chapter>
 
  <!-- Keep this comment at the end of the file
  Local variables:
index bc6f978..03ee19a 100644 (file)
@@ -1,6 +1,5 @@
-<!-- $Id: frontend.xml,v 1.3 2001-07-19 23:29:40 adam Exp $ -->
+<!-- $Id: frontend.xml,v 1.4 2001-07-20 21:34:36 adam Exp $ -->
  <chapter><title id="server">Making an IR Server for Your Database</title>
-
   <sect1><title>Introduction</title>
 
    <para>
@@ -45,7 +44,7 @@
     </para>
    </note>
   </sect1>
-
+  
   <sect1><title>The Database Frontend</title>
 
    <para>
@@ -86,7 +85,7 @@
     <listitem><para>
       Extended Services (optional).
      </para></listitem>
-
+    
     <listitem><para>
       Result-Set Delete (optional).
      </para></listitem>
@@ -94,7 +93,7 @@
     <listitem><para>
       Result-Set Sort (optional).
      </para></listitem>
-
+    
    </itemizedlist>
 
    <para>
    </para>
 
    <synopsis>
-    int statserv_main(int argc, char **argv,
-    bend_initresult *(*bend_init)(bend_initrequest *r),
-    void (*bend_close)(void *handle));
+int statserv_main(int argc, char **argv,
+                  bend_initresult *(*bend_init)(bend_initrequest *r),
+                  void (*bend_close)(void *handle));
    </synopsis>
 
    <para>
     according to the parameters given. When connection requests are received,
     the event handler will typically <function>fork()</function> and
     create a sub-process to handle a new connection.
-    Alternatively the server may be setup to create threads for each connection.
+    Alternatively the server may be setup to create threads for each
+    connection.
     If you do use global variables and forking, you should be aware, then,
     that these cannot be shared between associations, unless you explicitly
     disable forking by command line parameters. 
    </para>
-
+   
    <para>
     The server provides a mechanism for controlling some of its behavior
     without using command-line options. The function
    </para>
 
    <synopsis>
-    statserv_options_block *statserv_getcontrol(void);
+statserv_options_block *statserv_getcontrol(void);
    </synopsis>
 
    <para>
-    Will return a pointer to a <literal>struct statserv_options_block</literal>
+    will return a pointer to a <literal>struct statserv_options_block</literal>
     describing the current default settings of the server. The structure
     contains these elements:
-
+    
     <variablelist>
-     <varlistentry><term>int dynamic</term><listitem><para>
+     <varlistentry><term>
+       <literal>int dynamic</literal></term><listitem><para>
        A boolean value, which determines whether the server
        will fork on each incoming request (TRUE), or not (FALSE). Default is
        TRUE. This flag is only read by UNIX-based servers (WIN32 based servers
        doesn't fork).
        </para></listitem></varlistentry>
-
-     <varlistentry><term>int threads</term><listitem><para>
+     
+     <varlistentry><term>
+       <literal>int threads</literal></term><listitem><para>
        A boolean value, which determines whether the server
        will create a thread on each incoming request (TRUE), or not (FALSE).
-       Default is FALSE. This flag is only read by UNIX-based servers that offer
-       POSIX Threads support. WIN32-based servers always operate in threaded mode.
+       Default is FALSE. This flag is only read by UNIX-based servers
+       that offer POSIX Threads support.
+       WIN32-based servers always operate in threaded mode.
        </para></listitem></varlistentry>
-
-     <varlistentry><term>int inetd</term><listitem><para>
+     
+     <varlistentry><term>
+       <literal>int inetd</literal></term><listitem><para>
        A boolean value, which determines whether the server
        will operates under a UNIX INET daemon (inetd). Default is FALSE.
        </para></listitem></varlistentry>
-
-     <varlistentry><term>int loglevel</term><listitem><para>
+     
+     <varlistentry><term>
+       <literal>int loglevel</literal></term><listitem><para>
        Set this by ORing the constants defined in
        <filename>include/yaz/yaz-log.h</filename>.
        </para></listitem></varlistentry>
-
-     <varlistentry><term>char logfile&lsqb;ODR_MAXNAME+1&rsqb;</term>
+     
+     <varlistentry><term>
+       <literal>char logfile&lsqb;ODR_MAXNAME+1&rsqb;</literal></term>
       <listitem><para>File for diagnostic output (&quot;&quot;: stderr).
        </para></listitem></varlistentry>
-     <varlistentry><term>char apdufile&lsqb;ODR_MAXNAME+1&rsqb;</term>
+     
+     <varlistentry><term>
+       <literal>char apdufile&lsqb;ODR_MAXNAME+1&rsqb;</literal></term>
       <listitem><para>
-       Name of file for logging incoming and outgoing APDUs (&quot;&quot;: don't
-       log APDUs, &quot;-&quot;: <literal>stderr</literal>).
+       Name of file for logging incoming and outgoing APDUs
+       (&quot;&quot;: don't log APDUs, &quot;-&quot;:
+       <literal>stderr</literal>).
        </para></listitem></varlistentry>
 
-     <varlistentry><term>char default_listen&lsqb;1024&rsqb;</term>
+     <varlistentry><term>
+      <literal>char default_listen&lsqb;1024&rsqb;</literal></term>
       <listitem><para>Same form as the command-line specification of
        listener address. &quot;&quot;: no default listener address.
        Default is to listen at &quot;tcp:@:9999&quot;. You can only
        specify one default listener address in this fashion.
        </para></listitem></varlistentry>
 
-     <varlistentry><term>enum oid_proto default_proto;</term>
+     <varlistentry><term>
+      <literal>enum oid_proto default_proto;</literal></term>
       <listitem><para>Either <literal>PROTO_SR</literal> or
-       <literal>PROTO_Z3950</literal>. Default is <literal>PROTO_Z39_50</literal>.
+       <literal>PROTO_Z3950</literal>.
+       Default is <literal>PROTO_Z39_50</literal>.
        </para></listitem></varlistentry>
-     <varlistentry><term>int idle_timeout;</term>
+     
+     <varlistentry><term>
+       <literal>int idle_timeout;</literal></term>
       <listitem><para>Maximum session idletime, in minutes. Zero indicates
        no (infinite) timeout. Default is 120 minutes.
        </para></listitem></varlistentry>
-
-     <varlistentry><term>int maxrecordsize;</term>
+     
+     <varlistentry><term>
+       <literal>int maxrecordsize;</literal></term>
       <listitem><para>Maximum permissible record (message) size. Default
-       is 1Mb. This amount of memory will only be allocated if a client requests a
-       very large amount of records in one operation (or a big record). Set it
-       to a lower number
-       if you are worried about resource consumption on your host system.
+       is 1Mb. This amount of memory will only be allocated if a
+       client requests a very large amount of records in one operation
+       (or a big record).
+       Set it to a lower number if you are worried about resource
+       consumption on your host system.
        </para></listitem></varlistentry>
 
-     <varlistentry><term>char configname&lsqb;ODR_MAXNAME+1&rsqb;</term>
+     <varlistentry><term>
+       <literal>char configname&lsqb;ODR_MAXNAME+1&rsqb;</literal></term>
       <listitem><para>Passed to the backend when a new connection is received.
        </para></listitem></varlistentry>
 
-     <varlistentry><term>char setuid&lsqb;ODR_MAXNAME+1&rsqb;</term>
+     <varlistentry><term>
+       <literal>char setuid&lsqb;ODR_MAXNAME+1&rsqb;</literal></term>
       <listitem><para>Set user id to the user specified, after binding
        the listener addresses.
        </para></listitem></varlistentry>
-
-     <varlistentry>
-      <term>void (*bend_start)(struct statserv_options_block *p)</term>
+     
+     <varlistentry><term>
+       <literal>void (*bend_start)(struct statserv_options_block *p)</literal>
+      </term>
       <listitem><para>Pointer to function which is called after the
        command line options have been parsed - but before the server
        starts listening.
        When the server operates as an NT service this handler is called
        whenever the service is started. 
        </para></listitem></varlistentry>
-
-     <varlistentry>
-      <term>void (*bend_stop)(struct statserv_options_block *p)</term>
+     
+     <varlistentry><term>
+       <literal>void (*bend_stop)(struct statserv_options_block *p)</literal>
+      </term>
       <listitem><para>Pointer to function which is called whenver the server
        has stopped listening for incoming connections. This function pointer
        has a default value of NULL in which case it isn't called.
        whenever the service is stopped.
        </para></listitem></varlistentry>
 
-     <varlistentry><term>void *handle</term>
+     <varlistentry><term>
+       <literal>void *handle</literal></term>
       <listitem><para>User defined pointer (default value NULL).
        This is a per-server handle that can be used to specify "user-data".
        Do not confuse this with the session-handle as returned by bend_init.
     a static area. You are allowed to change the contents of the structure,
     but the changes will not take effect before you call
    </para>
-
+   
    <synopsis>
-    void statserv_setcontrol(statserv_options_block *block);
+void statserv_setcontrol(statserv_options_block *block);
    </synopsis>
 
    <note>
    <sect2><title>Init</title>
 
     <synopsis>
-     bend_initresult (*bend_init)(bend_initrequest *r);
+bend_initresult (*bend_init)(bend_initrequest *r);
     </synopsis>
 
     <para>
@@ -431,8 +452,8 @@ typedef struct {
      corresponding to the resultSetIndicator field in the protocol.
      <literal>num_bases/basenames</literal> is a length of/array of character
      pointers to the database names provided by the client.
-     The <literal>query</literal> is the full query structure as defined in the
-     protocol ASN.1 specification.
+     The <literal>query</literal> is the full query structure as defined in
+     the protocol ASN.1 specification.
      It can be either of the possible query types, and it's up to you to
      determine if you can handle the provided query type.
      Rather than reproduce the C interface here, we'll refer you to the
@@ -496,8 +517,8 @@ typedef struct bend_fetch_rr {
      allocating space for structured data records.
      The stream will be reset when all records have been assembled, and
      the response package has been transmitted.
-     For unstructured data, the backend is responsible for maintaining a static
-     or dynamic buffer for the record between calls.
+     For unstructured data, the backend is responsible for maintaining a
+     static or dynamic buffer for the record between calls.
     </para>
 
     <para>
@@ -552,7 +573,7 @@ typedef struct {
     oid_value format;          /* One of the CLASS_RECSYN members */
     Z_ReferenceId *referenceId;/* reference ID */
     Z_RecordComposition *comp; /* Formatting instructions */
-    ODR stream;                /* encoding stream - memory source if required */
+    ODR stream;                /* encoding stream */
     ODR print;                 /* printing stream */
     bend_request request;
     bend_association association;
@@ -604,8 +625,8 @@ typedef struct bend_delete_rr {
 
     <note>
      <para>
-      The delete set function definition is rather primitive, mostly because we
-      have had no practical need for it as of yet. If someone wants
+      The delete set function definition is rather primitive, mostly because
+      we have had no practical need for it as of yet. If someone wants
       to provide a full delete service, we'd be happy to add the
       extra parameters that are required. Are there clients out there
       that will actually delete sets they no longer need?
index 29fd69b..45bf930 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Id: indexdata.xml,v 1.2 2001-07-19 23:29:40 adam Exp $ -->
+<!-- $Id: indexdata.xml,v 1.3 2001-07-20 21:34:36 adam Exp $ -->
  <appendix><title>About Index Data</title>
 
   <para>
@@ -29,7 +29,6 @@
 
   </para>
   <para>
-
    The Hacker's Jargon File has the following to say about the
    use of the
    prefix &quot;YA&quot; in the name of a software product.
index de0b3ca..db28c6c 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Id: odr.xml,v 1.2 2001-07-19 23:29:40 adam Exp $ -->
+<!-- $Id: odr.xml,v 1.3 2001-07-20 21:34:36 adam Exp $ -->
  <chapter><title id="odr">The ODR Module</title>
   
   <sect1><title>Introduction</title>
@@ -926,10 +926,10 @@ MySequence ::= &lsqb;10&rsqb; IMPLICIT SEQUENCE {
      </para>
 
      <synopsis>
-      int odr_constructed_begin(ODR o, void *p, int class, int tag,
-      const char *name);
+int odr_constructed_begin(ODR o, void *p, int class, int tag,
+                          const char *name);
 
-      int odr_constructed_end(ODR o);
+int odr_constructed_end(ODR o);
      </synopsis>
 
      <para>
@@ -1045,8 +1045,8 @@ int myArray(ODR o, MyArray **p, int optional, const char *name)
     </para>
 
     <synopsis>
-     int odr_choice(ODR o, Odr_arm arm&lsqb;&rsqb;, void *p, void *whichp,
-     const char *name);
+int odr_choice(ODR o, Odr_arm arm&lsqb;&rsqb;, void *p, void *whichp,
+               const char *name);
     </synopsis>
 
     <para>
@@ -1173,10 +1173,9 @@ int myChoice(ODR o, MyChoice **p, int optional, const char *name)
     <para>
      In some cases (say, a non-optional choice which is a member of a
      sequence), you can "embed" the union and its discriminator in the
-structure
-     belonging to the enclosing type, and you won't need to fiddle with
-     memory allocation to create a separate structure to wrap the
-     discriminator and union.
+     structure belonging to the enclosing type, and you won't need to
+     fiddle with memory allocation to create a separate structure to
+     wrap the discriminator and union.
     </para>
 
     <para>
@@ -1199,7 +1198,7 @@ structure
     </para>
 
     <synopsis>
-     void odr_choice_bias(ODR o, int what);
+void odr_choice_bias(ODR o, int what);
     </synopsis>
 
     <para>
index 4b2a9a1..4d47a1b 100644 (file)
@@ -1,4 +1,4 @@
-<!-- $Id: tools.xml,v 1.2 2001-07-19 23:29:40 adam Exp $ -->
+<!-- $Id: tools.xml,v 1.3 2001-07-20 21:34:36 adam Exp $ -->
  <chapter><title>Supporting Tools</title>
 
   <para>
@@ -264,12 +264,12 @@ int p_query_attset (const char *arg);
       title-index. In this case, the user could specify
      </para>
 
-     <screen>>
+     <screen>
       ti,ranked=knuth computer
      </screen>
      <para>
-      and the <literal>ranked</literal> would map to structure=free-form-text
-      (4=105) and the <literal>ti</literal> would map to title (1=4).
+      and the <literal>ranked</literal> would map to relation=relevance
+      (2=102) and the <literal>ti</literal> would map to title (1=4).
      </para>
 
      <para>
@@ -341,8 +341,8 @@ int p_query_attset (const char *arg);
       To parse a simple string with a FIND query use the function
      </para>
      <screen>
-      struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset, const char *str,
-      int *error, int *pos);
+struct ccl_rpn_node *ccl_find_str (CCL_bibset bibset, const char *str,
+                                   int *error, int *pos);
      </screen>
      <para>
       which takes the CCL profile (<literal>bibset</literal>) and query
@@ -591,7 +591,7 @@ typedef struct oident
     The function
    </para>
 
-   <screen><
+   <screen>
     oid_value oid_getvalbyname(const char *name);
    </screen>