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

📄 ex_message.h

📁 mediastreamer2是开源的网络传输媒体流的库
💻 H
字号:
/*  eXosip - This is the eXtended osip library.  Copyright (C) 2002,2003,2004,2005,2006,2007  Aymeric MOIZARD  - jack@atosc.org    eXosip 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.    eXosip 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*/#ifdef ENABLE_MPATROL#include <mpatrol.h>#endif#ifndef __EX_MESSAGE_H__#define __EX_MESSAGE_H__#include <osipparser2/osip_parser.h>#include <time.h>#ifdef __cplusplusextern "C"{#endif/** * @file eX_message.h * @brief eXosip request API * * This file provide the API needed to control requests. You can * use it to: * * <ul> * <li>build any requests.</li> * <li>send any requests.</li> * <li>build any answers.</li> * <li>send any answers.</li> * </ul> *//** * @defgroup eXosip2_message eXosip2 request outside of dialog * @ingroup eXosip2_msg * @{ *//** * Build a default request message. *  * This method will be updated to send any message outside of dialog * In this later case, you'll specify the method to use in the second * argument. * * * @param message   Pointer for the SIP request to build. * @param method    request method. (like "MESSAGE" or "PING"...) * @param to        SIP url for callee. * @param from      SIP url for caller. * @param route     Route header for request. (optionnal) */  int eXosip_message_build_request (osip_message_t ** message, const char *method,                                    const char *to, const char *from,                                    const char *route);/** * Send an request. *  * @param message          SIP request to send. */  int eXosip_message_send_request (osip_message_t * message);/** * Build answer for a request. *  * @param tid             id of transaction. * @param status          status for SIP answer to build. * @param answer          The SIP answer to build. */  int eXosip_message_build_answer (int tid, int status, osip_message_t ** answer);/** * Send answer for a request. *  * @param tid             id of transaction. * @param status          status for SIP answer to send. * @param answer          The SIP answer to send. (default will be sent if NULL) */  int eXosip_message_send_answer (int tid, int status, osip_message_t * answer);/** @} */#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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