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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? osip.h

?? 這是我用vxwork編譯成功的osip協議棧
?? H
?? 第 1 頁 / 共 3 頁
字號:
/**  * Allocate an osip_t element. * @param osip the element to allocate. */  int osip_init (osip_t ** osip);/** * Free all resource in a osip_t element. * @param osip The element to release. */  void osip_release (osip_t * osip);/** * Set a pointer in a osip_t element. * This help to find your application layer in callbacks. * @param osip The element to work on. * @param pointer The element to set. */  void osip_set_application_context (osip_t * osip, void *pointer);/** * Get a pointer in a osip_t element. * This help to find your application layer in callbacks. * @param osip The element to work on. */  void *osip_get_application_context (osip_t * osip);/** * Remove a transaction from the osip stack. * @param osip The element to work on. * @param ict The transaction to add. */  int osip_remove_transaction (osip_t * osip, osip_transaction_t * ict);/** * Consume ALL pending osip_event_t previously added in the fifos of ict transactions. * @param osip The element to work on. */  int osip_ict_execute (osip_t * osip);/** * Consume ALL pending osip_event_t previously added in the fifos of ist transactions. * @param osip The element to work on. */  int osip_ist_execute (osip_t * osip);/** * Consume ALL pending osip_event_t previously added in the fifos of nict transactions. * @param osip The element to work on. */  int osip_nict_execute (osip_t * osip);/** * Consume ALL pending osip_event_t previously added in the fifos of nist transactions. * @param osip The element to work on. */  int osip_nist_execute (osip_t * osip);/** * Retreive the minimum timer value to be used by an application * so that the osip_timer_*_execute method don't have to be called * often. *  * @param osip The element to work on. * @param lower_tv The minimum timer when the application should wake up. */  void osip_timers_gettimeout (osip_t * osip, struct timeval *lower_tv);/** * Check if an ict transactions needs a timer event. * @param osip The element to work on. */  void osip_timers_ict_execute (osip_t * osip);/** * Check if an ist transactions needs a timer event. * @param osip The element to work on. */  void osip_timers_ist_execute (osip_t * osip);/** * Check if a nict transactions needs a timer event. * @param osip The element to work on. */  void osip_timers_nict_execute (osip_t * osip);/** * Check if a nist transactions needs a timer event. * @param osip The element to work on. */  void osip_timers_nist_execute (osip_t * osip);/* Take care of mutlithreading issuewhile using this method *//** * Search for a transaction that match this event (MUST be a MESSAGE event). * @param transactions The list of transactions to work on. * @param evt The element representing the SIP MESSAGE. */  osip_transaction_t *osip_transaction_find (osip_list_t * transactions,					     osip_event_t * evt);#ifndef DOXYGEN/** * Some race conditions can happen in multi threaded applications. * Use this method carefully. * <BR>Search for a transaction that match this event (MUST be a MESSAGE event). * @param osip The element to work on. * @param evt The element representing the SIP MESSAGE. */#ifndef OSIP_MT  osip_transaction_t *osip_find_transaction (osip_t * osip,					     osip_event_t * evt);#endif  osip_transaction_t *__osip_find_transaction (osip_t * osip,					       osip_event_t * evt,					       int consume);#endif/** * Search for a transaction that match this event (MUST be a MESSAGE event) * and add this event if a transaction is found.. * @param osip The element to work on. * @param evt The element representing the SIP MESSAGE. */  int osip_find_transaction_and_add_event (osip_t * osip, osip_event_t * evt);/** * Create a transaction for this event (MUST be a SIP REQUEST event). * @param osip The element to work on. * @param evt The element representing the new SIP REQUEST. */  osip_transaction_t *osip_create_transaction (osip_t * osip,					       osip_event_t * evt);/** * Create a sipevent from a SIP message string. * @param buf The SIP message as a string. * @param length The length of the buffer to parse. */  osip_event_t *osip_parse (const char *buf, size_t length);/** * Send required retransmissions * @param osip The element to work on. */  void osip_retransmissions_execute (osip_t * osip);/** * Start out of fsm 200 Ok retransmissions. This is usefull for user-agents. * @param osip The osip_t structure. * @param dialog The dialog the 200 Ok is part of. * @param msg200ok The 200 ok response. * @param sock The socket to be used to send the message. (optional). */  void osip_start_200ok_retransmissions (osip_t * osip,					 struct osip_dialog *dialog,					 osip_message_t * msg200ok, int sock);/** * Start out of fsm ACK retransmissions. This is usefull for user-agents. * @param osip The osip_t structure. * @param dialog The dialog the ACK is part of. * @param ack The ACK that has just been sent in response to a 200 Ok. * @param dest The destination host. * @param port The destination port. * @param sock The socket to be used to send the message. (optional). */  void osip_start_ack_retransmissions (osip_t * osip,				       struct osip_dialog *dialog,				       osip_message_t * ack, char *dest,				       int port, int sock);/** * Stop the out of fsm 200 Ok retransmissions matching an incoming ACK. * @param osip The osip_t structure. * @param ack  The ack that has just been received. */  struct osip_dialog *osip_stop_200ok_retransmissions (osip_t * osip, osip_message_t * ack);/** * Stop out of fsm retransmissions (ACK or 200 Ok) associated to a given dialog. * This function must be called before freeing a dialog if out of fsm retransmissions * have been scheduled. * @param osip The osip_t structure * @param dialog The dialog. */  void osip_stop_retransmissions_from_dialog (osip_t * osip,					      struct osip_dialog *dialog);/** * 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);/** * Free all ressource in a sipevent. * @param event The event to free. */  void osip_event_free (osip_event_t * event);/** * Register the callback used to send SIP message. * @param cf The osip element attached to the transaction. * @param cb The method we want to register. */  void osip_set_cb_send_message (osip_t * cf,				 int (*cb) (osip_transaction_t *,					    osip_message_t *, char *,					    int, int));/* FOR INCOMING TRANSACTION *//** * Check if the sipevent is of type RCV_REQINVITE. * @param event the event to check. */#define EVT_IS_RCV_INVITE(event)       (event->type==RCV_REQINVITE)/** * Check if the sipevent is of type RCV_REQACK. * @param event the event to check. */#define EVT_IS_RCV_ACK(event)          (event->type==RCV_REQACK)/** * Check if the sipevent is of type RCV_REQUEST. * @param event the event to check. */#define EVT_IS_RCV_REQUEST(event)      (event->type==RCV_REQUEST)/** * Check if the sipevent is of type RCV_STATUS_1XX. * @param event the event to check. */#define EVT_IS_RCV_STATUS_1XX(event)   (event->type==RCV_STATUS_1XX)/** * Check if the sipevent is of type RCV_STATUS_2XX. * @param event the event to check. */#define EVT_IS_RCV_STATUS_2XX(event)   (event->type==RCV_STATUS_2XX)/** * Check if the sipevent is of type RCV_STATUS_3456XX. * @param event the event to check. */#define EVT_IS_RCV_STATUS_3456XX(event)   (event->type==RCV_STATUS_3456XX)/* FOR OUTGOING TRANSACTION *//** * Check if the sipevent is of type SND_REQINVITE. * @param event the event to check. */#define EVT_IS_SND_INVITE(event)       (event->type==SND_REQINVITE)/** * Check if the sipevent is of type SND_REQACK. * @param event the event to check. */#define EVT_IS_SND_ACK(event)          (event->type==SND_REQACK)/** * Check if the sipevent is of type SND_REQUEST. * @param event the event to check. */#define EVT_IS_SND_REQUEST(event)      (event->type==SND_REQUEST)/** * Check if the sipevent is of type SND_STATUS_1XX. * @param event the event to check. */#define EVT_IS_SND_STATUS_1XX(event)   (event->type==SND_STATUS_1XX)/** * Check if the sipevent is of type SND_STATUS_2XX. * @param event the event to check. */#define EVT_IS_SND_STATUS_2XX(event)   (event->type==SND_STATUS_2XX)/** * Check if the sipevent is of type SND_STATUS_3456XX. * @param event the event to check. */#define EVT_IS_SND_STATUS_3456XX(event)   (event->type==SND_STATUS_3456XX)/** * Check if the sipevent is of an incoming SIP MESSAGE. * @param event the event to check. */#define EVT_IS_INCOMINGMSG(event)      (event->type>=RCV_REQINVITE \                	               &&event->type<=RCV_STATUS_3456XX)/** * Check if the sipevent is of an incoming SIP REQUEST. * @param event the event to check. */#define EVT_IS_INCOMINGREQ(event)      (EVT_IS_RCV_INVITE(event) \                                       ||EVT_IS_RCV_ACK(event) \                                       ||EVT_IS_RCV_REQUEST(event))/** * Check if the sipevent is of an incoming SIP RESPONSE. * @param event the event to check. */#define EVT_IS_INCOMINGRESP(event)     (EVT_IS_RCV_STATUS_1XX(event) \                                       ||EVT_IS_RCV_STATUS_2XX(event) \				       ||EVT_IS_RCV_STATUS_3456XX(event))/** * Check if the sipevent is of an outgoing SIP MESSAGE. * @param event the event to check. */#define EVT_IS_OUTGOINGMSG(event)      (event->type>=SND_REQINVITE \                	               &&event->type<=SND_STATUS_3456XX)/** * Check if the sipevent is of an outgoing SIP REQUEST. * @param event the event to check. */#define EVT_IS_OUTGOINGREQ(event)      (EVT_IS_SND_INVITE(event) \                                       ||EVT_IS_SND_ACK(event) \                                       ||EVT_IS_SND_REQUEST(event))/** * Check if the sipevent is of an outgoing SIP RESPONSE. * @param event the event to check. */#define EVT_IS_OUTGOINGRESP(event)     (EVT_IS_SND_STATUS_1XX(event) \                                       ||EVT_IS_SND_STATUS_2XX(event) \				       ||EVT_IS_SND_STATUS_3456XX(event))/** * Check if the sipevent is a SIP MESSAGE. * @param event the event to check. */#define EVT_IS_MSG(event)              (event->type>=RCV_REQINVITE \                	               &&event->type<=SND_STATUS_3456XX)/** * Check if the sipevent is of type KILL_TRANSACTION. * NOTE: THIS IS AN INTERNAL METHOD ONLY * @param event the event to check. */#define EVT_IS_KILL_TRANSACTION(event) (event->type==KILL_TRANSACTION)#ifdef __cplusplus}#endif/** @} */#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆精品国产91久久久更新时间 | 精品国产一区二区三区忘忧草| 日韩情涩欧美日韩视频| 国产欧美一区二区精品久导航| 亚洲福利视频导航| 成人毛片老司机大片| 欧美一级电影网站| 亚洲午夜成aⅴ人片| 不卡电影一区二区三区| www成人在线观看| 美女高潮久久久| 91超碰这里只有精品国产| 亚洲三级小视频| 盗摄精品av一区二区三区| 日韩免费一区二区| 日韩制服丝袜av| 欧美日韩一级大片网址| 亚洲欧美在线视频观看| 粉嫩在线一区二区三区视频| 久久亚洲精品国产精品紫薇| 另类小说一区二区三区| 日韩欧美国产不卡| 日韩电影免费在线观看网站| 欧美日韩在线亚洲一区蜜芽| 亚洲综合视频在线观看| 91影院在线观看| 亚洲欧洲av色图| 91丝袜国产在线播放| 18成人在线视频| 国产在线播放一区二区三区| 欧美成人女星排行榜| 男人的j进女人的j一区| 日韩精品一区国产麻豆| 久久se精品一区二区| 日韩欧美亚洲另类制服综合在线| 免费日韩伦理电影| 精品国免费一区二区三区| 久久99精品一区二区三区三区| 日韩一区二区麻豆国产| 久久国产精品色婷婷| 久久久久99精品国产片| 国产精品99久久久久| 国产精品婷婷午夜在线观看| a亚洲天堂av| 亚洲自拍都市欧美小说| 51精品久久久久久久蜜臀| 日韩国产欧美一区二区三区| 精品区一区二区| 从欧美一区二区三区| 亚洲精品伦理在线| 91精品欧美久久久久久动漫| 极品美女销魂一区二区三区免费| 久久久久久一级片| 99久久精品国产网站| 日韩成人一级片| 久久久久国产成人精品亚洲午夜| 91一区一区三区| 免费一级片91| 最近日韩中文字幕| 日韩一区二区精品在线观看| 成人综合在线观看| 天天亚洲美女在线视频| 日本一区二区在线不卡| 欧美另类变人与禽xxxxx| 韩国理伦片一区二区三区在线播放| 国产精品久久久久影院| 欧美日韩成人综合| 成人高清视频免费观看| 午夜影院在线观看欧美| 欧美经典一区二区| 欧美日韩国产首页| 成人亚洲一区二区一| 日本在线播放一区二区三区| 国产精品久久免费看| 日韩美女视频在线| 欧美色图天堂网| 国产91精品在线观看| 三级久久三级久久| 亚洲人xxxx| 久久亚洲精华国产精华液| 欧美撒尿777hd撒尿| 成人久久18免费网站麻豆| 日韩精品一区第一页| 亚洲日本一区二区| 国产欧美日韩精品一区| 日韩欧美在线影院| 欧美日韩国产小视频在线观看| 丁香婷婷深情五月亚洲| 九色综合狠狠综合久久| 亚洲超丰满肉感bbw| 国产精品久久久久影视| 久久欧美中文字幕| 日韩精品专区在线| 欧美日韩国产电影| 99久久国产综合精品女不卡| 国产河南妇女毛片精品久久久| 日韩成人一级大片| 亚洲成人综合视频| 亚洲电影一级黄| 亚洲一区二区高清| 玉足女爽爽91| 亚洲人成网站在线| 国产精品女主播在线观看| 久久亚洲综合av| 精品国产乱子伦一区| 欧美一区二区在线播放| 91精品国产综合久久久久| 欧美午夜精品久久久久久超碰 | 麻豆国产欧美日韩综合精品二区| 国产精品另类一区| 久久综合色婷婷| 久久婷婷色综合| 久久亚区不卡日本| 久久久久综合网| 国产精品美女久久久久aⅴ| 国产精品久久久久婷婷二区次| 国产精品情趣视频| 亚洲柠檬福利资源导航| 亚洲一区二区三区四区五区中文| 亚洲欧美日本在线| 亚洲成av人片观看| 开心九九激情九九欧美日韩精美视频电影| 午夜av一区二区三区| 捆绑调教美女网站视频一区| 激情综合一区二区三区| 国产精品一区二区在线观看不卡 | 国产成人精品www牛牛影视| 国产激情精品久久久第一区二区 | 亚洲欧美日本在线| 亚洲综合免费观看高清完整版 | 成人黄页毛片网站| 色欧美片视频在线观看| 欧美日韩一区二区三区四区五区 | 欧美精品乱人伦久久久久久| 日韩女优av电影| 久久久亚洲高清| 亚洲免费资源在线播放| 午夜欧美视频在线观看| 久久精品国产亚洲一区二区三区 | 91精品国产综合久久婷婷香蕉 | 成人免费视频网站在线观看| 99re热这里只有精品视频| 欧美三级日韩在线| 久久久久久久免费视频了| 日韩伦理电影网| 久久精工是国产品牌吗| eeuss鲁片一区二区三区在线看| 欧美亚洲国产bt| 久久精品夜色噜噜亚洲a∨| 亚洲精品日韩一| 国产最新精品免费| 在线中文字幕不卡| 久久综合久久综合亚洲| 亚洲欧美日韩国产综合在线| 免费看欧美女人艹b| 99国产一区二区三精品乱码| 6080国产精品一区二区| 国产精品久久久久影院色老大| 亚洲图片一区二区| 成人丝袜18视频在线观看| 欧美精品tushy高清| 国产精品久久国产精麻豆99网站| 亚洲大片在线观看| 99re亚洲国产精品| 久久香蕉国产线看观看99| 日韩专区在线视频| 97久久精品人人澡人人爽| 欧美mv和日韩mv的网站| 激情综合色丁香一区二区| 91捆绑美女网站| 国产人成一区二区三区影院| 亚州成人在线电影| 色婷婷av一区二区三区大白胸| 久久亚洲欧美国产精品乐播| 日本中文字幕一区二区有限公司| 色婷婷精品大视频在线蜜桃视频| 国产亚洲美州欧州综合国| 久久精品国产99国产精品| 欧美剧情片在线观看| 亚洲精品国产第一综合99久久 | 亚洲电影视频在线| 一本一道久久a久久精品综合蜜臀| 久久久另类综合| 激情综合网av| 久久久综合精品| 国产老女人精品毛片久久| 欧美电影免费提供在线观看| 日韩**一区毛片| 欧美一区日本一区韩国一区| 日韩精品乱码免费| 欧美精品电影在线播放| 亚洲成av人片| 欧美二区在线观看| 欧美aaa在线| 欧美tk丨vk视频| 韩国女主播成人在线| 久久精品一区二区三区av| 国产成人啪午夜精品网站男同| 久久久91精品国产一区二区精品| 国产又黄又大久久|