ChinaUnix.net
相关文章推荐:

exosip

static jauthinfo_t *exosip_find_authentication_info (const char *username, const char *realm); exosip_t exosip; void __exosip_wakeup (void) void __exosip_wakeup_event (void) 都是调用jpipe_write ()向pipe写。 int exosip_lock (void) int exosip_unlock (void) 调用osip_mutex_lock 和osip_mutex_unlock 。 int exosip_transaction_find (int tid, osip_transaction_t ** transaction) 遍历exosip.j_transactions,找...

by Elite - 网络技术文档中心 - 2006-03-28 14:37:43 阅读(2374) 回复(0)

相关讨论

struct exosip_call_t { int c_id; exosip_dialog_t *c_dialogs; osip_transaction_t *c_inc_tr; osip_transaction_t *c_out_tr; int c_retry; /* avoid too many unsuccessfull retry */ osip_transaction_t *c_inc_options_tr;//这里的options是什么意思? osip_transaction_t *c_out_options_tr; void *external_reference; /* cache old credentials for reuse in nex...

by Elite - 网络技术文档中心 - 2006-03-28 14:36:22 阅读(1189) 回复(0)

我用exosip写一个UAC和一个UAS, UAC发出一个INVITE请求。 UAS不想接受。发回了一个403,exosip_call_send_answer(je->tid,403,NULL); UAC怎么样知道返回的是403呢? 谢谢牛们!

by flagcugb - VoIP开发技术 - 2010-08-05 21:33:49 阅读(4298) 回复(2)

exosip的网络接口,包括防火墙ip、网络族、接收消息的端口、socket id和协议、socket表。 struct exosip_net { char net_firewall_ip[50]; /* ip address to use for masquerading contacts */ int net_ip_family; /* AF_INET6 or AF_INET */ struct sockaddr_storage ai_addr; char net_port[20]; /* port for receiving ...

by Elite - 网络技术文档中心 - 2006-03-20 20:30:39 阅读(1154) 回复(0)

本帖最后由 flagcugb 于 2010-08-18 20:36 编辑 在exosip中,怎么输出via头域的值? via头域是osip_list_t类型,而osip_list_t类型结构有两个成员,如下: int nb_elt __node_t * node 其中,__node_t 结构中还有两个成员,如下: struct __node { void *next; void *element; }; 问题出现了:via域值存在element中,但是element是一个void 类型的,请问,element中的值我应该怎样输出...

by flagcugb - VoIP开发技术 - 2011-09-15 23:15:43 阅读(6342) 回复(4)

exosip写个简单的注册程序,但一直不发sip包,清用过的高手帮忙看看! #include <exosip2/exosip.h> #include #include #include #include #include #include int main(int argc, char **argv) { int i; i = exosip_init(); if (i != 0) { return -1; } printf("exosip_init success\n"); i = exosip_listen_addr(IPPROTO_U...

by zhangbin_1013 - VoIP开发技术 - 2008-04-24 18:51:13 阅读(7278) 回复(0)

Osip2是一个开放源代码的sip协议栈,是开源代码中不多使用C语言写的协议栈之一,它具有短小简洁的特点,专注于sip底层解析使得它的效率比较高。 exosip是Osip2的一个扩展协议集,它部分封装了Osip2协议栈,使得它更容易被使用。 一、介绍 Osip2是一个开放源代码的sip协议栈,是开源代码中不多使用C语言写的协议栈之一,它具有短小简洁的特点,专注于sip底层解析使得它的效率比较高。但缺点也很明显,首先就是可用性差,没有很好的...

by pwestly - Linux文档专区 - 2005-04-05 20:07:49 阅读(1218) 回复(0)