libosip  5.3.0
parser.h
1 /*
2  The oSIP library implements the Session Initiation Protocol (SIP -rfc3261-)
3  Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com
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 #ifndef _MSG_H_
21 #define _MSG_H_
22 
23 #ifndef DOXYGEN
24 
25 #ifndef MINISIZE
26 #define NUMBER_OF_HEADERS 33
27 #else
28 #define NUMBER_OF_HEADERS 22
29 #endif
30 
31 #ifndef NUMBER_OF_HEADERS_COMMASEPARATED
32 #define NUMBER_OF_HEADERS_COMMASEPARATED 256
33 #endif
34 
35 /* internal type for parser's config */
36 typedef struct ___osip_message_config_t {
37  char *hname;
38  int (*setheader)(osip_message_t *, const char *);
39  int ignored_when_invalid;
40 } __osip_message_config_t;
41 
42 typedef struct ___osip_message_config_commaseparated_t {
43  char hname[256];
44 } __osip_message_config_commaseparated_t;
45 
46 int __osip_message_call_method(int i, osip_message_t *dest, const char *hvalue);
47 int __osip_message_is_header_comma_separated(const char *hname);
48 int __osip_message_is_known_header(const char *hname);
49 
50 int __osip_find_next_occurence(const char *str, const char *buf, const char **index_of_str, const char *end_of_buf);
51 int __osip_find_next_crlf(const char *start_of_header, const char **end_of_header);
52 int __osip_find_next_crlfcrlf(const char *start_of_part, const char **end_of_part);
53 
54 int __osip_quoted_string_set(const char *name, const char *str, char **result, const char **next);
55 int __osip_token_set(const char *name, const char *str, char **result, const char **next);
56 
57 int __osip_generic_param_parseall(osip_list_t *gen_params, const char *params);
58 #endif
59 
60 #endif
Definition: osip_list.h:87
Definition: osip_message.h:54