File: from_parser.xml

package info (click to toggle)
kamailio 6.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 70,472 kB
  • sloc: ansic: 859,394; xml: 203,514; makefile: 9,688; sh: 9,105; sql: 8,571; yacc: 4,121; python: 3,086; perl: 2,955; java: 449; cpp: 289; javascript: 270; php: 258; ruby: 248; awk: 27
file content (47 lines) | stat: -rw-r--r-- 1,786 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 
   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">

<section id="from_parser" xmlns:xi="http://www.w3.org/2001/XInclude">
    <sectioninfo>
	<revhistory>
	    <revision>
		<revnumber>$Revision$</revnumber>
		<date>$Date$</date>
	    </revision>
	</revhistory>
    </sectioninfo>

    <title>From Header Field Parser</title>
    <para>
	This parser is only a wrapper to the To header field parser. Since
	bodies of both header fields are identical, From parser only calls To
	parser.
    </para>
    <para>
	The wrapper can be found in file <filename>parse_from.c</filename>
	under <filename>parser</filename> subdirectory. There is only one
	function called <function>parse_from_header</function>. The function
	accepts one parameter which is pointer to structure representing the
	From header field to be parsed. The function creates an instance of
	<structname>to_body</structname> structure and initializes it. It then
	calls <function>parse_to</function> function and if everything went OK,
	the pointer to the newly created structure will be put in
	<structfield>parsed</structfield> field of the structure representing
	the parsed header field.
    </para>
    <para>
	The newly created structure will be freed when the whole message is
	being destroyed.  (See To header field parser description for more
	details).
    </para>
    <para>
	From parser <emphasis>must be called explicitly</emphasis> !
    </para>
    <para>
	If the main parser finds a From header field, it will not parse the
	header field body automatically. It is up to you to call the
	<function>parse_from_header</function> when you want to parse a From
	header field body.
    </para>
</section>