and added files
[bcm963xx.git] / userapps / opensource / libosip2 / src / osipparser2 / osip_accept.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
27
28
29 /* adds the accept header to message.              */
30 /* INPUT : char *hvalue | value of header.    */
31 /* OUTPUT: osip_message_t *sip | structure to save results.  */
32 /* returns -1 on error. */
33 int
34 osip_message_set_accept (osip_message_t * sip, const char *hvalue)
35 {
36   osip_accept_t *accept;
37   int i;
38
39   if (hvalue == NULL || hvalue[0] == '\0')
40     return 0;
41
42   i = accept_init (&accept);
43   if (i != 0)
44     return -1;
45   i = osip_accept_parse (accept, hvalue);
46   if (i != 0)
47     {
48       osip_accept_free (accept);
49       return -1;
50     }
51   sip->message_property = 2;
52
53   osip_list_add (sip->accepts, accept, -1);
54   return 0;
55 }
56
57
58 int
59 osip_message_get_accept (const osip_message_t * sip, int pos,
60                          osip_accept_t ** dest)
61 {
62   osip_accept_t *accept;
63
64   *dest = NULL;
65   if (osip_list_size (sip->accepts) <= pos)
66     return -1;                  /* does not exist */
67   accept = (osip_accept_t *) osip_list_get (sip->accepts, pos);
68   *dest = accept;
69   return pos;
70 }