http://downloads.netgear.com/files/GPL/GPL_Source_V361j_DM111PSP_series_consumer_rele...
[bcm963xx.git] / userapps / opensource / libosip2 / src / osipparser2 / osip_accept_language.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
29 int
30 osip_message_set_accept_language (osip_message_t * sip, const char *hvalue)
31 {
32   osip_accept_language_t *accept_language;
33   int i;
34
35   if (hvalue == NULL || hvalue[0] == '\0')
36     return 0;
37
38   i = osip_accept_language_init (&accept_language);
39   if (i != 0)
40     return -1;
41   i = osip_accept_language_parse (accept_language, hvalue);
42   if (i != 0)
43     {
44       osip_accept_language_free (accept_language);
45       return -1;
46     }
47   sip->message_property = 2;
48   osip_list_add (sip->accept_languages, accept_language, -1);
49   return 0;
50 }
51
52 int
53 osip_message_get_accept_language (const osip_message_t * sip, int pos,
54                                   osip_accept_language_t ** dest)
55 {
56   osip_accept_language_t *accept_language;
57
58   *dest = NULL;
59   if (osip_list_size (sip->accept_languages) <= pos)
60     return -1;                  /* does not exist */
61   accept_language =
62     (osip_accept_language_t *) osip_list_get (sip->accept_languages, pos);
63   *dest = accept_language;
64   return pos;
65 }