Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
fd7d5e08
提交
fd7d5e08
authored
4月 04, 2013
作者:
Jeff Lenk
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
windows compiler fixes - now builds again
上级
576cb892
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1912 行增加
和
123 行删除
+1912
-123
libsrtp.2010.vcxproj
libs/srtp/libsrtp.2010.vcxproj
+1
-0
libsrtp.2012.vcxproj
libs/srtp/libsrtp.2012.vcxproj
+3
-2
ekt.c
libs/srtp/srtp/ekt.c
+4
-0
freeswitch_wrap.2010.cxx
src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx
+958
-34
swig.2010.cs
src/mod/languages/mod_managed/managed/swig.2010.cs
+922
-87
switch_core_media.c
src/switch_core_media.c
+20
-0
switch_sdp.c
src/switch_sdp.c
+4
-0
没有找到文件。
libs/srtp/libsrtp.2010.vcxproj
浏览文件 @
fd7d5e08
...
...
@@ -340,6 +340,7 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"srtp\ekt.c"
/>
<ClCompile
Include=
"srtp\srtp.c"
/>
<ClCompile
Include=
"crypto\kernel\alloc.c"
/>
<ClCompile
Include=
"crypto\kernel\crypto_kernel.c"
/>
...
...
libs/srtp/libsrtp.2012.vcxproj
浏览文件 @
fd7d5e08
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets=
"Build"
ToolsVersion=
"4.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup
Label=
"ProjectConfigurations"
>
<ProjectConfiguration
Include=
"Debug Dll|Win32"
>
...
...
@@ -348,6 +348,7 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile
Include=
"srtp\ekt.c"
/>
<ClCompile
Include=
"srtp\srtp.c"
/>
<ClCompile
Include=
"crypto\kernel\alloc.c"
/>
<ClCompile
Include=
"crypto\kernel\crypto_kernel.c"
/>
...
...
@@ -417,4 +418,4 @@
<Import
Project=
"$(VCTargetsPath)\Microsoft.Cpp.targets"
/>
<ImportGroup
Label=
"ExtensionTargets"
>
</ImportGroup>
</Project>
</Project>
\ No newline at end of file
libs/srtp/srtp/ekt.c
浏览文件 @
fd7d5e08
...
...
@@ -47,6 +47,10 @@
#include "srtp_priv.h"
#include "ekt.h"
#ifdef _MSC_VER
#pragma warning(disable:4100)
#endif
extern
debug_module_t
mod_srtp
;
/*
...
...
src/mod/languages/mod_managed/freeswitch_wrap.2010.cxx
浏览文件 @
fd7d5e08
差异被折叠。
点击展开。
src/mod/languages/mod_managed/managed/swig.2010.cs
浏览文件 @
fd7d5e08
差异被折叠。
点击展开。
src/switch_core_media.c
浏览文件 @
fd7d5e08
...
...
@@ -1814,6 +1814,13 @@ static int dtls_ok(switch_core_session_t *session)
return
switch_channel_test_flag
(
session
->
channel
,
CF_DTLS_OK
);
}
#ifdef _MSC_VER
/* remove this if the break is removed from the following for loop which causes unreachable code loop */
/* for (i = 0; i < engine->cand_acl_count; i++) { */
#pragma warning(push)
#pragma warning(disable:4702)
#endif
//?
static
void
check_ice
(
switch_media_handle_t
*
smh
,
switch_media_type_t
type
,
sdp_session_t
*
sdp
,
sdp_media_t
*
m
)
{
...
...
@@ -2051,6 +2058,9 @@ static void check_ice(switch_media_handle_t *smh, switch_media_type_t type, sdp_
}
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
SWITCH_DECLARE
(
void
)
switch_core_session_set_ice
(
switch_core_session_t
*
session
)
{
...
...
@@ -6968,6 +6978,13 @@ SWITCH_DECLARE(void) switch_core_media_check_outgoing_proxy(switch_core_session_
}
}
#ifdef _MSC_VER
/* remove this if the break is removed from the following for loop which causes unreachable code loop */
/* for (m = sdp->sdp_media; m; m = m->m_next) { */
#pragma warning(push)
#pragma warning(disable:4702)
#endif
//?
SWITCH_DECLARE
(
void
)
switch_core_media_proxy_codec
(
switch_core_session_t
*
session
,
const
char
*
r_sdp
)
{
...
...
@@ -7038,6 +7055,9 @@ SWITCH_DECLARE(void) switch_core_media_proxy_codec(switch_core_session_t *sessio
sdp_parser_free
(
parser
);
}
#ifdef _MSC_VER
#pragma warning(pop)
#endif
SWITCH_DECLARE
(
void
)
switch_core_media_recover_session
(
switch_core_session_t
*
session
)
{
...
...
src/switch_sdp.c
浏览文件 @
fd7d5e08
...
...
@@ -17,3 +17,7 @@ sdp_connection_t *sdp_media_connections(sdp_media_t const *m)
#include <su_errno.c>
#include <su_string.c>
#include <sdp_parse.c>
#ifdef _MSC_VER
#define longlong __int64
#include <strtoull.c>
#endif
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论