亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? xixt.h

?? SIP協(xié)議棧實現(xiàn)
?? H
字號:
/*  The oSIP library implements the Session Initiation Protocol (SIP -rfc2543-)  Copyright (C) 2001  Aymeric MOIZARD jack@atosc.org    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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/#ifndef _XIXT_H_#define _XIXT_H_#include <osipparser2/osip_const.h>#include <osipparser2/osip_port.h>#ifdef __cplusplusextern "C"{#endif  void __osip_message_callback (int type, osip_transaction_t *, osip_message_t *);  void __osip_kill_transaction_callback (int type, osip_transaction_t *);  void __osip_transport_error_callback (int type, osip_transaction_t *, int error);/** * Allocate an osip_ict_t element. (for outgoing INVITE transaction) * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ict The element to allocate. * @param osip The global instance of oSIP. * @param invite The SIP request that initiate the transaction. */  int __osip_ict_init (osip_ict_t ** ict, osip_t * osip, osip_message_t * invite);/** * Free all resource in a osip_ict_t element. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ict The element to free. */  int __osip_ict_free (osip_ict_t * ict);/** * Check if this transaction needs a TIMEOUT_A event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ict_need_timer_a_event (osip_ict_t * ict, state_t state,					       int transactionid);/** * Check if this transaction needs a TIMEOUT_B event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ict_need_timer_b_event (osip_ict_t * ict, state_t state,					       int transactionid);/** * Check if this transaction needs a TIMEOUT_D event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ict_need_timer_d_event (osip_ict_t * ict, state_t state,					       int transactionid);/** * Allocate an osip_nict_t element. (for outgoing NON-INVITE transaction) * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nict The element to allocate. * @param osip The global instance of oSIP. * @param request The SIP request that initiate the transaction. */  int __osip_nict_init (osip_nict_t ** nict, osip_t * osip, osip_message_t * request);/** * Free all resource in an osip_nict_t element. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nict The element to free. */  int __osip_nict_free (osip_nict_t * nict);/** * Check if this transaction needs a TIMEOUT_E event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_nict_need_timer_e_event (osip_nict_t * nict, state_t state,					      int transactionid);/** * Check if this transaction needs a TIMEOUT_F event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_nict_need_timer_f_event (osip_nict_t * nict, state_t state,						int transactionid);/** * Check if this transaction needs a TIMEOUT_K event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nict The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_nict_need_timer_k_event (osip_nict_t * nict, state_t state,						int transactionid);  /** * Allocate an osip_ist_t element. (for incoming INVITE transaction) * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ist The element to allocate. * @param osip The global instance of oSIP. * @param invite The SIP invite that initiate the transaction. */  int __osip_ist_init (osip_ist_t ** ist, osip_t * osip, osip_message_t * invite);/** * Free all resource in a osip_ist_t element. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ist The element to free. */  int __osip_ist_free (osip_ist_t * ist);/** * Check if this transaction needs a TIMEOUT_G event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ist The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ist_need_timer_g_event (osip_ist_t * ist, state_t state,					       int transactionid);/** * Check if this transaction needs a TIMEOUT_H event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ist The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ist_need_timer_h_event (osip_ist_t * ist, state_t state,					       int transactionid);/** * Check if this transaction needs a TIMEOUT_I event  * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param ist The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_ist_need_timer_i_event (osip_ist_t * ist, state_t state,					       int transactionid);/** * Allocate an osip_nist_t element. (for incoming NON-INVITE transaction) * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nist The element to allocate. * @param osip The global instance of oSIP. * @param request The SIP request that initiate the transaction. */  int __osip_nist_init (osip_nist_t ** nist, osip_t * osip, osip_message_t * request);/** * Free all resource in a osip_nist_t element. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param nist The element to free. */  int __osip_nist_free (osip_nist_t * nist);/** * Check if this transaction needs a TIMEOUT_J event  * @param nist The element to work on. * @param state The actual state of the transaction. * @param transactionid The transaction id. */  osip_event_t *__osip_nist_need_timer_j_event (osip_nist_t * nist, state_t state,						int transactionid);/** * Check if the response match a server transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param tr The transaction. * @param resp The SIP response received. */  int __osip_transaction_matching_response_osip_to_xict_17_1_3 (osip_transaction_t * tr,								osip_message_t * resp);/** * Check if the request match a client transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param tr The transaction. * @param request The SIP request received. */  int __osip_transaction_matching_request_osip_to_xist_17_2_3 (osip_transaction_t * tr,							       osip_message_t * request);/** * Lock access to the list of ict transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_ict_lock (osip_t * osip);/** * Unlock access to the list of ict transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_ict_unlock (osip_t * osip);/** * Lock access to the list of ist transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_ist_lock (osip_t * osip);/** * Unlock access to the list of ist transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_ist_unlock (osip_t * osip);/** * Lock access to the list of nict transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_nict_lock (osip_t * osip);/** * Unlock access to the list of nict transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_nict_unlock (osip_t * osip);/** * Lock access to the list of nist transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_nist_lock (osip_t * osip);/** * Unlock access to the list of nist transactions. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. */  int osip_nist_unlock (osip_t * osip);/** * Add a ict transaction in the ict list of transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. * @param ict The transaction to add. */  int __osip_add_ict (osip_t * osip, osip_transaction_t * ict);/** * Add a ist transaction in the ist list of transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. * @param ist The transaction to add. */  int __osip_add_ist (osip_t * osip, osip_transaction_t * ist);/** * Add a nict transaction in the nict list of transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. * @param nict The transaction to add. */  int __osip_add_nict (osip_t * osip, osip_transaction_t * nict);/** * Add a nist transaction in the nist list of transaction. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param osip The element to work on. * @param nist The transaction to add. */  int __osip_add_nist (osip_t * osip, osip_transaction_t * nist);/** * Remove a ict transaction from the ict list of transaction. * @param osip The element to work on. * @param ict The transaction to add. */  int __osip_remove_ict_transaction (osip_t * osip, osip_transaction_t * ict);/** * Remove a ist transaction from the ist list of transaction. * @param osip The element to work on. * @param ist The transaction to add. */  int __osip_remove_ist_transaction (osip_t * osip, osip_transaction_t * ist);/** * Remove a nict transaction from the nict list of transaction. * @param osip The element to work on. * @param nict The transaction to add. */  int __osip_remove_nict_transaction (osip_t * osip, osip_transaction_t * nict);/** * Remove a nist transaction from the nist list of transaction. * @param osip The element to work on. * @param nist The transaction to add. */  int __osip_remove_nist_transaction (osip_t * osip, osip_transaction_t * nist);/** * Allocate a sipevent. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param type The type of the event. * @param transactionid The transaction id for this event. */  osip_event_t *__osip_event_new (type_t type, int transactionid);/** * Allocate a sipevent (we know this message is an OUTGOING SIP message). * @param sip The SIP message we want to send. */  osip_event_t *osip_new_outgoing_sipmessage (osip_message_t * sip);#ifdef __cplusplus}#endif#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人黄页在线观看| 日韩一区二区在线观看视频播放| 日韩一级免费观看| 夜夜精品浪潮av一区二区三区| 九一九一国产精品| 欧美日韩久久一区| 午夜精品一区二区三区三上悠亚| 91福利在线导航| 亚洲高清视频在线| 88在线观看91蜜桃国自产| 蜜桃视频一区二区三区| 久久综合给合久久狠狠狠97色69| 国产美女久久久久| 亚洲精品成人在线| 欧美日韩免费观看一区二区三区| 日韩高清在线电影| 香蕉乱码成人久久天堂爱免费| 欧美一区二区国产| av亚洲精华国产精华精华| 亚洲成人综合网站| 中文在线资源观看网站视频免费不卡| 97久久超碰国产精品| 日韩一区精品视频| 成人欧美一区二区三区白人 | 国产中文字幕精品| 亚洲日本一区二区| 精品区一区二区| 欧美亚洲综合网| 不卡电影一区二区三区| 日韩va欧美va亚洲va久久| 亚洲精品美国一| 国产精品日日摸夜夜摸av| 精品1区2区在线观看| 日韩欧美中文一区| 91精彩视频在线| 99久久综合狠狠综合久久| 精品一区二区在线观看| 丝袜美腿亚洲一区二区图片| 一区二区三区四区亚洲| 国产精品视频yy9299一区| 久久免费偷拍视频| 欧美大胆人体bbbb| 精品久久久久久久久久久久久久久| 欧美综合色免费| 911精品国产一区二区在线| 欧美少妇xxx| 欧美自拍丝袜亚洲| 欧美性色aⅴ视频一区日韩精品| 99麻豆久久久国产精品免费优播| 国产精品一二二区| 懂色av一区二区夜夜嗨| 成人18精品视频| 91精彩视频在线观看| 欧洲另类一二三四区| 91福利国产成人精品照片| 欧美日韩久久久久久| 日韩亚洲欧美在线| 久久理论电影网| 国产精品久久久久久久岛一牛影视 | 国产精品一区免费视频| 99视频精品在线| 91精品蜜臀在线一区尤物| 久久久久久免费网| 亚洲欧美乱综合| 久久国产精品一区二区| av资源站一区| 精品少妇一区二区三区免费观看 | 日韩国产在线观看| 成人免费黄色在线| 欧美卡1卡2卡| 亚洲色图欧美偷拍| 韩国女主播一区| 国产欧美视频一区二区三区| 亚洲乱码国产乱码精品精的特点| 精彩视频一区二区三区| 99re亚洲国产精品| 精品国产百合女同互慰| 亚洲成人在线网站| 91理论电影在线观看| 欧美mv和日韩mv的网站| 亚洲国产精品一区二区久久恐怖片| 国产黄色91视频| 国产亚洲人成网站| 极品少妇xxxx精品少妇偷拍| 欧美日韩国产乱码电影| 国产精品国产三级国产有无不卡| 久久av资源站| 91精品国产综合久久福利| 亚洲午夜精品网| 日本韩国精品一区二区在线观看| 国产精品丝袜一区| 高清视频一区二区| 久久久国产精华| 国产一区二区精品久久99| 日韩美女一区二区三区四区| 日本欧美韩国一区三区| 精品噜噜噜噜久久久久久久久试看 | 精品一区二区在线免费观看| 精品日韩欧美在线| 国产精品亚洲一区二区三区在线 | 欧美大片一区二区| 国产精品一区不卡| 国产精品嫩草影院av蜜臀| 成人免费av资源| 亚洲精品日韩专区silk| 欧美日韩免费高清一区色橹橹| 亚洲高清视频中文字幕| 欧美成人三级电影在线| 国产99久久久国产精品潘金| 最近日韩中文字幕| 亚洲欧洲99久久| 欧美三级三级三级| 激情伊人五月天久久综合| 中文字幕精品—区二区四季| 在线视频你懂得一区二区三区| 亚洲一区二区三区在线播放| 日韩午夜av一区| 色综合一个色综合| 日本亚洲欧美天堂免费| 国产香蕉久久精品综合网| 91成人在线精品| 高清久久久久久| 美女尤物国产一区| 一区二区三区在线高清| 国产亚洲人成网站| 亚洲男人的天堂在线aⅴ视频 | 99精品热视频| 国产一本一道久久香蕉| 日韩精品国产精品| 亚洲国产精品久久久久婷婷884| 久久久久久麻豆| 欧美一区国产二区| 欧美三级三级三级| 色狠狠av一区二区三区| 岛国av在线一区| 风间由美一区二区av101| 美女任你摸久久| 日韩avvvv在线播放| 日本中文一区二区三区| 视频一区二区三区在线| 亚洲一区二区三区四区中文字幕| 中文字幕在线观看一区| 中文字幕一区二区视频| 国产精品国产三级国产三级人妇| 国产亚洲短视频| 国产亚洲视频系列| 中文字幕欧美激情| 自拍偷拍国产精品| 亚洲成a人在线观看| 麻豆91在线观看| 国产精品91一区二区| 成人性生交大片| 91成人国产精品| 欧美一级夜夜爽| 欧美激情在线观看视频免费| 美国三级日本三级久久99 | 亚洲一区二区在线视频| 天堂va蜜桃一区二区三区| 午夜免费久久看| 精久久久久久久久久久| 99久免费精品视频在线观看| 欧美美女网站色| 久久久精品人体av艺术| 亚洲乱码国产乱码精品精可以看| 亚洲国产日韩一级| 国产综合色视频| 在线视频你懂得一区| 精品国产一区二区三区不卡| 一区二区国产视频| 狠狠色丁香婷婷综合| 91视视频在线直接观看在线看网页在线看| 色婷婷av一区二区| 久久精品日产第一区二区三区高清版| 亚洲免费观看高清完整版在线| 国产一区91精品张津瑜| 欧美日韩精品三区| 综合电影一区二区三区 | 91精品欧美一区二区三区综合在| 国产精品家庭影院| 国产精品一区二区男女羞羞无遮挡| 色八戒一区二区三区| 中文文精品字幕一区二区| 美女看a上一区| 日韩精品最新网址| 青娱乐精品视频| 欧美精品自拍偷拍| 午夜视频在线观看一区| 欧美视频三区在线播放| 亚洲一区在线观看免费观看电影高清 | 久久久久久久久久美女| 精品一区二区三区久久| 精品国产髙清在线看国产毛片 | 精品亚洲国内自在自线福利| 日韩欧美中文一区二区| 久久爱www久久做| 久久久影视传媒| 99v久久综合狠狠综合久久| 亚洲色图.com| 欧美三级在线视频| 男女男精品视频|