
pjsip基础教程
文章平均质量分 70
sunjianjun1981
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PJLIB库基础框架-数据结构之数组的使用
#include #include #include // for pj_init.#define THIS_FILE "main.c"/*数组测试*/void array_test(void);static pj_status_t matching_cb(const void *value);int main(int argc, char** argv){ pj_原创 2013-04-23 09:31:44 · 1271 阅读 · 0 评论 -
PJLIB库基础框架-数据结构之字符串的使用
#include #include #include // for pj_init.#define THIS_FILE "main.c"/*字符串struct pj_str_t{ char *ptr; pj_ssize_t slen;};*//*字符串测试*/void string_test(void);int main(int argc,原创 2013-04-22 11:05:42 · 2114 阅读 · 0 评论 -
PJLIB库基础框架-初始化与缓冲池和内存池的使用
#include #include #include // for pj_init.#define THIS_FILE "main.c"int main(int argc, char** argv){ pj_status_t status; pj_caching_pool ch_pool; // pjlib库初始化 status = pj_init(); if (sta原创 2013-04-18 13:19:19 · 2731 阅读 · 0 评论 -
PJLIB库基础框架-数据结构之循环链表的使用
#include #include #include // for pj_init.#define THIS_FILE "main.c"typedef struct MY_NODE{ // This must be the first member declared in the struct! PJ_DECL_LIST_MEMBER(struct MY_NODE); int原创 2013-04-24 13:09:43 · 1347 阅读 · 0 评论 -
pjsua帮助手册(中文)
http://www.cnblogs.com/MikeZhang/archive/2012/02/08/pjsuaChineseManual.htmlpjsua帮助手册(中文) 原文地址 : http://www.pjsip.org/pjsua.htm介绍 PJSUA是一个开源的命令行SIP用户代理(软电话),用PJSIP协议,PJNATH,和PJMEDIA实现。转载 2013-08-23 16:37:06 · 1944 阅读 · 0 评论