⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sip_extra.h.in

📁 一个支持众多rfc的开源sip协议栈
💻 IN
字号:
/**@file sofia-sip/sip_extra.h.in *  -*- C -*- * Template for <sofia-sip/sip_extra.h>. * * @date Created: Thu Oct  5 19:10:58 EEST 2006 *//* -*- C -*- * * This file is part of the Sofia-SIP package * * Copyright (C) 2006 Nokia Corporation. * * Contact: Pekka Pessi <pekka.pessi@nokia.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */#ifndef SIP_EXTRA_H/** Defined when <sofia-sip/sip_extra.h> has been included. */#define SIP_EXTRA_H/**@file sofia-sip/sip_extra.h* * @brief Extension headers for SIP. * * #AUTO# * * @author Pekka Pessi <Pekka.Pessi@nokia.com>. */#ifndef SIP_H#include <sofia-sip/sip.h>#endif#ifndef SIP_HEADER_H#include <sofia-sip/sip_header.h>#endifSOFIA_BEGIN_DECLStypedef struct sip_refer_sub_s      sip_refer_sub_t;/**@ingroup sip_refer_sub * @brief Structure for @ReferSub header. */struct sip_refer_sub_s{  sip_common_t        rs_common[1];   	/**< Common fragment info */  sip_error_t        *rs_next;        	/**< Dummy link to next */  char const         *rs_value;       	/**< "true" or "false" */  msg_param_t const  *rs_params;      	/**< List of extension parameters */};typedef struct sip_suppress_body_if_match_s sip_suppress_body_if_match_t;/**@ingroup sip_suppress_body_if_match * @brief Structure for @SuppressBodyIfMatch header. */struct sip_suppress_body_if_match_s{  sip_common_t   sbim_common[1];	/**< Common fragment info */  sip_error_t   *sbim_next;		/**< Dummy link to next header */  char const    *sbim_tag;		/**< Entity-tag */};typedef struct sip_suppress_notify_if_match_s sip_suppress_notify_if_match_t;/**@ingroup sip_suppress_notify_if_match * @brief Structure for @SuppressNotifyIfMatch header. */struct sip_suppress_notify_if_match_s{  sip_common_t   snim_common[1];	/**< Common fragment info */  sip_error_t   *snim_next;		/**< Dummy link to next header */  char const    *snim_tag;		/**< Entity-tag */};SOFIA_END_DECLS#endif /** !defined(SIP_EXTRA_H) */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -