12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * $Id$
- *
- * Copyright (C) 2006 Andreas Granig <[email protected]>
- *
- * This file is part of Kamailio, a free SIP server.
- *
- * Kamailio is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version
- *
- * Kamailio is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- /*!
- * \file
- * \brief Supported parser
- * \ingroup parser
- */
- #include "../mem/mem.h"
- #include "parse_supported.h"
- /*!
- * Parse all Supported headers
- */
- int parse_supported( struct sip_msg *msg)
- {
- unsigned int supported;
- struct hdr_field *hdr;
- struct option_tag_body *sb;
- /* maybe the header is already parsed! */
- if (msg->supported && msg->supported->parsed)
- return 0;
- /* parse to the end in order to get all SUPPORTED headers */
- if (parse_headers(msg,HDR_EOH_F,0)==-1 || !msg->supported)
- return -1;
- /* bad luck! :-( - we have to parse them */
- supported = 0;
- for( hdr=msg->supported ; hdr ; hdr=next_sibling_hdr(hdr)) {
- if (hdr->parsed) {
- supported |= ((struct option_tag_body*)hdr->parsed)->option_tags;
- continue;
- }
- sb = (struct option_tag_body*)pkg_malloc(sizeof(struct option_tag_body));
- if (sb == 0) {
- LM_ERR("out of pkg_memory\n");
- return -1;
- }
- parse_option_tag_body(&(hdr->body), &(sb->option_tags));
- sb->hfree = hf_free_option_tag;
- sb->option_tags_all = 0;
- hdr->parsed = (void*)sb;
- supported |= sb->option_tags;
- }
- ((struct option_tag_body*)msg->supported->parsed)->option_tags_all =
- supported;
- return 0;
- }
|