voip软件999是什么网站软件

皇蓝网络科技(上海)有限公司|skype回拨系统|voip|VoIP什么意思|voip怎么做|voip技术|voip电话|voip网关|voip网络电话|专业做回拨系统|专业做回拨系统的|什么是voip|什么是回拨系统|什么网络电话好用|免费网络电话|回拨系统|回拨系统搭建|回拨系统是什么|回拨系统赚钱吗|搭建回拨系统|皇蓝|皇蓝网络|皇蓝网络科技|网络电话
独立APP 拥有独立的手机APP软件(苹果,安卓),独立LOGO; 独立系统后台 独立系统后台,无限生成卡,设置各种资费,无限发展系统代理; 线路优势 采用网通、电信、铁通多线机房,确保线路互通互换; 稳定的落地线路资源,回铃迅速,语音清晰| 客户服务 Service 友情链接QQ咨询电话咨询免费打电话软件KC VoIP网络电话免费60分钟-免费资源-网站运营-壹聚教程网免费打电话软件KC VoIP网络电话免费60分钟本文章给大家介绍一款不错的免费打电话软件,KC VoIP网络电话他可以给你免费60分钟哦,这个时间足够长了,有需要的朋友可试一下。
高品质:KC网络电话,自主知识产权voip网络电话语音引擎技术,国际领先通话质量媲美传统电话。
很实用:KC电脑软件/下载,采用电脑打电话、网上打电话、手机打网络电话等方式提供。
超省钱:提供网络电话免费打60分钟,国内长途低至5分,国际长途7分起,无月租、无其它费用。
你可以使用手机号或邮箱地址进行删除 注册地址:/
0漫游、0月租,国内长途低至4分/分钟 VIP尊享夜间通话完全免费 手机,电脑多方式随意拨打
上一页: &&&&&下一页:相关内容
闹鬼庄园九阳神功编辑推荐
电脑壁纸相关专题>> eX_call.h - 一个很不错的基于SIP的voip软件
eX_call.h - 一个很不错的基于SIP的voip软件
eXosip - This is the eXtended osip library.
Copyright (C) 04,2005
Aymeric MOIZARD
- jack@atosc.org
eXo you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software F either version 2 of the License, or
(at your option) any later version.
eXosip 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.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
alo if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
#ifdef ENABLE_MPATROL
#include &mpatrol.h&
#ifndef __EX_CALL_H__
#define __EX_CALL_H__
#include &osipparser2/osip_parser.h&
#include &osipparser2/sdp_message.h&
#include &time.h&
#ifdef __cplusplus
extern &C&
* @file eX_call.h
* @brief eXosip call API
* This file provide the API needed to control calls. You can
* use it to:
* &li&build initial invite.&/li&
* &li&send initial invite.&/li&
* &li&build request within the call.&/li&
* &li&send request within the call.&/li&
* This API can be used to build the following messages:
INVITE, INFO, OPTIONS, REFER, UPDATE, NOTIFY
* @defgroup eXosip2_call eXosip2 INVITE and Call Management
* @ingroup eXosip2_msg
struct eXosip_call_t;
* Set a new application context for an existing call
* @param id
call-id or dialog-id of call
* @param reference New application context.
int eXosip_call_set_reference(int id, void *reference);
* Build a default INVITE message for a new call.
* @param invite
Pointer for the SIP element to hold.
* @param to
SIP url for callee.
* @param from
SIP url for caller.
* @param route
Route header for INVITE. (optionnal)
* @param subject
Subject for the call.
int eXosip_call_build_initial_invite(osip_message_t **invite, const char *to,
const char *from, const char *route,
const char *subject);
* Initiate a call.
* @param invite
SIP INVITE message to send.
int eXosip_call_send_initial_invite(osip_message_t *invite);
* Build a default request within a call. (INVITE, OPTIONS, INFO, REFER)
* @param did
dialog id of call.
* @param method
request type to build.
* @param request
The sip request to build.
int eXosip_call_build_request(int did, const char *method,
osip_message_t **request);
* Build a default ACK for a 200ok received.
* @param did
dialog id of call.
* @param ack
The sip request to build.
int eXosip_call_build_ack(int did, osip_message_t **ack);
* Send the ACK for the 200ok received..
* @param did
dialog id of call.
* @param ack
SIP ACK message to send.
int eXosip_call_send_ack(int did, osip_message_t *ack);
* Build a default REFER for a call transfer.
* @param did
dialog id of call.
* @param refer_to
url for call transfer (Refer-To header).
* @param request
The sip request to build.
int eXosip_call_build_refer(int did, const char *refer_to, osip_message_t **request);
* Build a default INFO within a call.
* @param did
dialog id of call.
* @param request
The sip request to build.
int eXosip_call_build_info(int did, osip_message_t **request);
* Build a default OPTIONS within a call.
* @param did
dialog id of call.
* @param request
The sip request to build.
int eXosip_call_build_options(int did, osip_message_t **request);
* Build a default UPDATE within a call.
* @param did
dialog id of call.
* @param request
The sip request to build.
int eXosip_call_build_update(int did, osip_message_t **request);
* Build a default NOTIFY within a call.
* @param did
dialog id of call.
* @param subscription_status
Subscription status of the request.
* @param request
The sip request to build.
int eXosip_call_build_notify(int did, int subscription_status, osip_message_t **request);
* send the request within call. (INVITE, OPTIONS, INFO, REFER, UPDATE)
* @param did
dialog id of call.
* @param request
The sip request to send.
int eXosip_call_send_request(int did, osip_message_t *request);
* Build default Answer for request.
* @param tid
id of transaction to answer.
* @param status
Status code to use.
* @param answer
The sip answer to build.
int eXosip_call_build_answer(int tid, int status, osip_message_t **answer);
* Send Answer for invite.
* @param tid
id of transaction to answer.
* @param status
response status if answer is NULL. (not allowed for 2XX)
* @param answer
The sip answer to send.
int eXosip_call_send_answer(int tid, int status, osip_message_t *answer);
* Terminate a call.
* send CANCEL, BYE or 603 Decline.
* @param cid
call id of call.
* @param did
dialog id of call.
int eXosip_call_terminate(int cid, int did);
* Build a PRACK for invite.
* @param tid
id of the invite transaction.
* @param prack
The sip prack to build.
int eXosip_call_build_prack(int tid, osip_message_t **prack);
* Send a PRACK for invite.
* @param tid
id of the invite transaction.
* @param prack
The sip prack to send.
int eXosip_call_send_prack(int tid, osip_message_t *prack);
* Send a NOTIFY containing the information about a call transfer.
* THIS METHOD WILL BE REPLACED or REMOVED, please use the
* new API to build NOTIFY.
* @param did
dialog id of call.
* @param subscription_status
the subscription status.
* @param body
the body to attach to NOTIFY.
int eXosip_transfer_send_notify(int did, int subscription_status, char *body);
* Get Refer-To header with Replace parameter from dialog.
* @param did
id of the dialog.
* @param refer_to
buffer to be filled with refer-to info.
* @param refer_to_len
size of refer_to buffer.
int eXosip_call_get_referto(int did, char *refer_to, size_t refer_to_len);
#ifdef __cplusplus
展开> <收缩
下载源码到电脑,阅读使用更方便
还剩0行未阅读,继续阅读 ▼
Sponsored links
源码文件列表
温馨提示: 点击源码文件名可预览文件内容哦 ^_^
oRTP.dll584.00 kB19-08-09 22:20
StdAfx.obj119.71 kB19-08-09 22:52
StdAfx.sbr1.44 MB19-08-09 22:52
vc60.pdb388.00 kB30-08-09 20:59
YouToo.exe564.08 kB30-08-09 21:01
YouToo.obj13.33 kB19-08-09 22:52
YouToo.pdb785.00 kB30-08-09 20:59
YouToo.res24.27 kB18-08-09 23:48
<img src='/images/file_icons/folder.png' alt='源码文件 '>&YouToo.sbr&0.00 B19-08-09 22:52
YouTooDlg.obj54.78 kB30-08-09 21:01
<img src='/images/file_icons/folder.png' alt='源码文件 '>&YouTooDlg.sbr&0.00 B30-08-09 21:01
dial.wav862.04 kB09-08-06 21:02
eXosip2.lib334.96 kB31-01-07 23:41
11.85 kB18-10-06 06:32
6.45 kB03-03-06 23:13
2.73 kB01-03-06 02:03
2.58 kB24-07-05 08:08
2.20 kB08-06-06 23:56
2.03 kB09-03-06 00:53
2.64 kB09-04-06 23:12
5.60 kB09-09-06 04:00
6.03 kB02-08-06 22:38
181.00 B24-07-05 08:08
11.81 kB28-10-06 17:13
20.00 B24-07-05 08:07
14.03 kB28-10-06 17:13
2.17 kB24-10-08 19:59
999.00 B18-09-08 19:51
1.81 kB12-01-09 04:59
467.00 B18-09-08 19:51
14.32 kB07-02-09 18:30
5.63 kB12-01-09 01:13
5.76 kB18-09-08 19:51
1.58 kB18-09-08 19:51
1.18 kB18-09-08 19:51
11.66 kB07-02-09 18:30
3.08 kB16-10-08 00:29
1.64 kB18-09-08 19:51
8.55 kB18-09-08 19:51
1.01 kB18-09-08 19:51
3.57 kB07-02-09 18:30
1.10 kB18-09-08 19:51
5.38 kB07-11-08 19:16
3.58 kB12-01-09 01:13
1.01 kB18-09-08 19:51
5.08 kB28-11-08 03:37
1.66 kB18-09-08 19:51
2.71 kB18-09-08 19:51
16.75 kB18-09-08 19:50
2.25 kB19-08-09 22:31
278.00 B18-09-08 19:50
12.37 kB25-01-09 00:27
4.52 kB19-08-09 22:52
7.26 kB18-09-08 19:50
6.94 kB07-02-09 18:27
7.21 kB18-09-08 19:50
3.82 kB18-09-08 19:50
14.80 kB18-09-08 19:50
1.80 kB18-09-08 19:50
3.70 kB18-09-08 19:50
1.36 kB18-09-08 19:50
3.55 kB18-09-08 19:50
14.51 kB12-01-09 05:07
6.01 kB12-01-09 04:22
2.98 kB18-09-08 19:50
doxygen.dox.in2.15 kB28-11-05 20:28
5.58 kB24-11-05 20:20
190.00 B28-11-05 20:28
12.20 kB28-10-06 16:51
36.08 kB27-07-06 18:02
2.63 kB24-11-05 20:20
7.38 kB18-04-06 21:06
3.24 kB18-04-06 21:06
4.06 kB20-04-06 08:38
1.55 kB20-04-06 08:38
834.00 B28-12-04 21:39
13.01 kB28-10-06 16:51
2.80 kB18-04-06 21:06
3.70 kB18-04-06 21:06
3.47 kB18-04-06 21:06
2.66 kB28-12-04 21:30
2.23 kB28-12-04 21:30
4.97 kB22-02-05 07:52
8.07 kB28-12-04 21:30
3.28 kB28-12-04 21:30
2.81 kB18-04-06 21:06
3.85 kB18-04-06 21:06
2.93 kB28-12-04 21:30
2.44 kB28-12-04 21:30
2.52 kB28-12-04 21:30
3.21 kB18-04-06 21:06
3.12 kB28-12-04 21:30
2.66 kB28-12-04 21:30
4.84 kB18-04-06 21:06
3.37 kB28-12-04 21:30
2.38 kB28-12-04 21:30
7.00 kB28-12-04 21:30
5.08 kB22-02-05 07:52
8.22 kB28-12-04 21:30
3.58 kB18-04-06 21:06
3.37 kB18-04-06 21:06
4.60 kB18-04-06 21:06
6.53 kB18-04-06 21:06
7.17 kB28-12-04 21:30
255.00 B28-11-05 20:28
15.99 kB28-10-06 16:51
3.37 kB24-11-05 20:20
5.80 kB28-12-04 21:30
2.52 kB28-12-04 21:30
4.49 kB24-11-05 20:20
2.06 kB24-11-05 20:20
14.95 kB18-04-06 21:06
28.91 kB18-04-06 21:06
10.85 kB30-08-06 19:48
13.95 kB18-04-06 21:06
21.36 kB18-04-06 21:06
ms2.lib194.01 kB05-02-07 15:12
oRTP.dll584.00 kB19-08-09 22:20
Ortp.lib40.72 kB19-08-09 22:20
osip2.lib114.86 kB31-01-07 23:49
osipparser2.lib290.49 kB31-01-07 23:45
3.50 kB02-02-07 15:30
YouToo.ico21.96 kB31-07-06 12:28
YouToo.rc2398.00 B02-02-07 15:30
1.34 kB07-02-07 19:53
ring.wav753.13 kB09-08-06 21:02
208.00 B02-02-07 15:30
1.21 kB05-02-07 23:26
YouToo.aps42.82 kB19-08-09 22:15
YouToo.clw1.77 kB19-08-09 22:32
2.11 kB02-02-07 15:30
YouToo.dsp4.72 kB19-08-09 22:31
YouToo.dsw535.00 B02-02-07 15:30
1.29 kB02-02-07 15:30
YouToo.ncb121.00 kB30-08-09 21:01
YouToo.opt49.50 kB30-08-09 21:01
YouToo.plg989.00 B30-08-09 21:01
6.40 kB07-02-07 20:45
21.27 kB29-08-09 15:31
1.93 kB07-02-07 20:33
<img src='/images/file_icons/folder.png' alt='源码文件 '>&headers&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&plugins&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&eXosip2&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&mediastreamer2&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&ortp&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&osip2&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&osipparser2&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&Debug&0.00 B03-09-09 20:08
<img src='/images/file_icons/folder.png' alt='源码文件 '>&include&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&plugins&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&Release&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&res&0.00 B30-08-09 20:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&softphone&0.00 B30-08-09 21:01
Sponsored links
23 篇源代码 21 篇源代码 18 篇源代码 13 篇源代码 9 篇源代码
285 篇源代码 173 篇源代码 48 篇源代码 42 篇源代码 36 篇源代码
评价成功,多谢!
CodeForge积分(原CF币)全新升级,功能更强大,使用更便捷,不仅可以用来下载海量源代码马上还可兑换精美小礼品了
您的积分不足
支付宝优惠套餐快速获取 22 积分
10积分 / ¥100
22积分 / ¥200原价 ¥220 元
65积分 / ¥500原价 ¥650 元
支付宝订单完成后,积分将自动加入到您的账号。以下是优惠期的人民币价格,优惠期过后将恢复美元价格。
更多付款方式:、
您本次下载所消耗的积分将转交上传作者。
同一源码,30天内重复下载,只扣除一次积分。
登录 CodeForge
还没有CodeForge账号?
Switch to the English version?
^_^"呃 ...
Sorry!这位大神很神秘,未开通博客呢,请浏览一下其他的吧
请按 Ctrl+D 键添加到收藏夹。

我要回帖

更多关于 voip是什么 的文章

 

随机推荐