Revert "Revert "and added files""
[bcm963xx.git] / userapps / opensource / libosip2 / src / osipparser2 / parser.h
1 /*
2   The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-)
3   Copyright (C) 2001,2002,2003  Aymeric MOIZARD jack@atosc.org
4   
5   This library is free software; you can redistribute it and/or
6   modify it under the terms of the GNU Lesser General Public
7   License as published by the Free Software Foundation; either
8   version 2.1 of the License, or (at your option) any later version.
9   
10   This library is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   Lesser General Public License for more details.
14   
15   You should have received a copy of the GNU Lesser General Public
16   License along with this library; if not, write to the Free Software
17   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20
21 #ifndef _MSG_H_
22 #define _MSG_H_
23
24 #define NUMBER_OF_HEADERS 31
25
26 /* internal type for parser's config */
27 typedef struct ___osip_message_config_t
28 {
29   char *hname;
30   int (*setheader) (osip_message_t *, const char *);
31 }
32 __osip_message_config_t;
33
34 int __osip_message_call_method (int i, osip_message_t * dest,
35                                 const char *hvalue);
36 int __osip_message_is_known_header (const char *hname);
37
38 int __osip_find_next_occurence (const char *str, const char *buf,
39                                 const char **index_of_str);
40 int __osip_find_next_crlf (const char *start_of_header,
41                            const char **end_of_header);
42 int __osip_find_next_crlfcrlf (const char *start_of_part,
43                                const char **end_of_part);
44
45 int __osip_quoted_string_set (const char *name, const char *str,
46                               char **result, const char **next);
47 int __osip_token_set (const char *name, const char *str,
48                       char **result, const char **next);
49
50
51 int __osip_generic_param_parseall (osip_list_t * gen_params,
52                                    const char *params);
53
54 #endif