File: fline_parser.xml

package info (click to toggle)
kamailio 5.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 68,332 kB
  • sloc: ansic: 744,091; xml: 196,848; cpp: 14,471; makefile: 8,859; sh: 8,814; sql: 7,844; yacc: 3,863; perl: 2,955; python: 2,710; java: 449; javascript: 269; php: 258; ruby: 225; cs: 40; awk: 27
file content (33 lines) | stat: -rw-r--r-- 1,038 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
<?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="fline_parser" xmlns:xi="http://www.w3.org/2001/XInclude">
    <sectioninfo>
	<revhistory>
	    <revision>
		<revnumber>$Revision$</revnumber>
		<date>$Date$</date>
	    </revision>
	</revhistory>

    </sectioninfo>
    
    <title>The First Line Parser</title>
    <para>
	Purpose of the parser is to parse the first line of a
	<acronym>SIP</acronym> message. The first line is represented by
	<structname>msg_start</structname> structure define in file
	<filename>parse_fline.h</filename> under <filename>parser</filename>
	subdirectory.
    </para>
    <para>
	The main function of the first line parser is
	<function>parse_first_line</function>, the function will fill in
	<structname>msg_start</structname> structure.
    </para>
    <para>
	Follow inline comments in the function if you want to add support for a
	new message type.
    </para>
</section>