and added files
[bcm963xx.git] / userapps / opensource / libosip2 / src / osipparser2 / osip_allow.c
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 #include <stdlib.h>
21 #include <stdio.h>
22
23 #include <osipparser2/osip_port.h>
24 #include <osipparser2/osip_message.h>
25 #include <osipparser2/osip_parser.h>
26 #include "parser.h"
27
28 int
29 osip_message_set_allow (osip_message_t * sip, const char *hvalue)
30 {
31   osip_allow_t *allow;
32   int i;
33
34   if (hvalue == NULL || hvalue[0] == '\0')
35     return 0;
36
37   i = osip_allow_init (&allow);
38   if (i != 0)
39     return -1;
40   i = osip_allow_parse (allow, hvalue);
41   if (i != 0)
42     {
43       osip_allow_free (allow);
44       return -1;
45     }
46   sip->message_property = 2;
47   osip_list_add (sip->allows, allow, -1);
48   return 0;
49 }
50
51 int
52 osip_message_get_allow (const osip_message_t * sip, int pos,
53                         osip_allow_t ** dest)
54 {
55   osip_allow_t *allow;
56
57   *dest = NULL;
58   if (osip_list_size (sip->allows) <= pos)
59     return -1;                  /* does not exist */
60   allow = (osip_allow_t *) osip_list_get (sip->allows, pos);
61   *dest = allow;
62   return pos;
63 }