params.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
  4. <section id="xmlops.parameters" xmlns:xi="http://www.w3.org/2001/XInclude">
  5. <title>Parameters</title>
  6. <section id="buf_size">
  7. <title><varname>buf_size</varname> (integer)</title>
  8. <para>
  9. Maximum size of the XML buffer.
  10. </para>
  11. <para>
  12. Default value is 4096.
  13. </para>
  14. <example>
  15. <title>Set <varname>buf_size</varname> parameter</title>
  16. <programlisting>
  17. ...
  18. modparam("xmlops", "buf_size", 8192)
  19. ...
  20. </programlisting>
  21. </example>
  22. </section>
  23. <section id="xml_ns">
  24. <title><varname>xml_ns</varname> (str)</title>
  25. <para>
  26. Register xml namespace prefix. Parameter value must have the format:
  27. 'prefix=uri'.</para>
  28. <example>
  29. <title>Set <varname>xml_ns</varname> parameter</title>
  30. <programlisting format="linespecific">
  31. ...
  32. modparam("xmlops", "xml_ns", "rpid=urn:ietf:params:xml:ns:pidf:rpid")
  33. ...
  34. </programlisting>
  35. </example>
  36. </section>
  37. </section>