| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * $Id$
- *
- * Copyright (c) 2004 Juha Heinanen
- *
- * This file is part of ser, a free SIP server.
- *
- * ser 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
- *
- * ser 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- /*! \file
- * \brief Parser :: Allow header
- *
- * \ingroup parser
- */
-
- #ifndef PARSE_ALLOW_H
- #define PARSE_ALLOW_H
-
- #include "hf.h"
- #include "msg_parser.h"
-
- /*! \brief
- * casting macro for accessing Allow body
- */
- #define get_allow_methods(p_msg) \
- (((struct allow_body*)(p_msg)->allow->parsed)->allow_all)
- struct allow_body {
- unsigned int allow; /*!< allow mask for the current hdr */
- unsigned int allow_all; /*!< allow mask for the all allow hdr - it's
- * set only for the first hdr in sibling
- * list*/
- };
- /*! \brief
- * Parse all Allow HFs
- */
- int parse_allow(struct sip_msg *msg);
- /*! \brief
- * Parse Allow HF body
- */
- int parse_allow_header(struct hdr_field* _h);
- /*! \brief
- * Release memory
- */
- void free_allow_body(struct allow_body **ab);
- void free_allow_header(struct hdr_field* hf);
- #endif /* PARSE_ALLOW_H */
|