1 Star 0 Fork 2

lidedongsn / freeswitch-esl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
testclient.c 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2015-07-13 16:30 . first commit
#include <stdio.h>
#include <stdlib.h>
#include <esl.h>
int main(int argc, char*argv[])
{
char ip[256];
char temp[256];
char command[256];
esl_handle_t handle = {{0}};
esl_status_t ret;
printf("\n\n******************************************************************\n\n");
if(argc != 2)
{
printf("Useage: ./testclient <server ip>\n");
return -1;
}
sprintf(ip, "%s", argv[1]);
ret = esl_connect(&handle, ip, 8021, NULL, "ClueCon");
if(ret != ESL_SUCCESS){
printf("\n\n------ Connect server failed ------\n\n");
return -1;
}
while(fgets(temp, 255, stdin)){
if(!strcmp(temp, "\n")){
continue;
}
if(!strcmp(temp, "quit\n") || !strcmp(temp, "q\n")){
break;
}
sprintf(command, "api %s\n", temp);
esl_send_recv(&handle, command);
if (handle.last_sr_event && handle.last_sr_event->body) {
printf("%s\n", handle.last_sr_event->body);
} else {
// this is unlikely to happen with api or bgapi (which is hardcoded above) but prefix but may be true for other commands
printf("%s\n", handle.last_sr_reply);
}
}
esl_disconnect(&handle);
printf("\n\n******************************************************************\n\n");
return 0;
}
C
1
https://gitee.com/lidecoolblue/freeswitch-esl.git
git@gitee.com:lidecoolblue/freeswitch-esl.git
lidecoolblue
freeswitch-esl
freeswitch-esl
master

搜索帮助