OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / ser / parser / parse_fline.h
1 /*
2  * $Id: parse_fline.h,v 1.6 2004/08/24 09:01:25 janakj Exp $
3  *
4  * Copyright (C) 2001-2003 FhG Fokus
5  *
6  * This file is part of ser, a free SIP server.
7  *
8  * ser is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version
12  *
13  * For a license to use the ser software under conditions
14  * other than those described here, or to purchase support for this
15  * software, please contact iptel.org by e-mail at the following addresses:
16  *    info@iptel.org
17  *
18  * ser is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License 
24  * along with this program; if not, write to the Free Software 
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26  */
27
28
29 #ifndef PARSE_FLINE_H
30 #define PARSE_FLINE_H
31
32 #include "../str.h"
33
34 /* Message is request */
35 #define SIP_REQUEST 1
36
37 /* Message is reply */
38 #define SIP_REPLY   2
39
40 /* Invalid message */
41 #define SIP_INVALID 0
42
43 #define SIP_VERSION "SIP/2.0"
44 #define SIP_VERSION_LEN 7
45
46 #define CANCEL "CANCEL"
47 #define ACK    "ACK"
48 #define INVITE "INVITE"
49
50 #define INVITE_LEN 6
51 #define CANCEL_LEN 6
52 #define ACK_LEN 3
53 #define BYE_LEN 3
54
55
56 struct msg_start {
57         int type;                         /* Type of the Message - Request/Response */
58         int len;                                                /* length including delimiter */
59         union {
60                 struct {
61                         str method;       /* Method string */
62                         str uri;          /* Request URI */
63                         str version;      /* SIP version */
64                         int method_value;
65                 } request;
66                 struct {
67                         str version;      /* SIP version */
68                         str status;       /* Reply status */
69                         str reason;       /* Reply reason phrase */
70                         unsigned int /* statusclass,*/ statuscode;
71                 } reply;
72         }u;
73 };
74
75
76 char* parse_first_line(char* buffer, unsigned int len, struct msg_start * fl);
77
78 char* parse_fline(char* buffer, char* end, struct msg_start* fl);
79
80
81 #endif /* PARSE_FLINE_H */