Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
64fc3f79
提交
64fc3f79
authored
7月 03, 2014
作者:
Kathleen King
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Changed the function parameter name in the function definition to
match the updated parameter name in the function declaration. #doxygen
上级
f47ecb25
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
6 行增加
和
6 行删除
+6
-6
switch_apr.c
src/switch_apr.c
+6
-6
没有找到文件。
src/switch_apr.c
浏览文件 @
64fc3f79
...
@@ -868,9 +868,9 @@ SWITCH_DECLARE(switch_status_t) switch_socket_recvfrom(switch_sockaddr_t *from,
...
@@ -868,9 +868,9 @@ SWITCH_DECLARE(switch_status_t) switch_socket_recvfrom(switch_sockaddr_t *from,
/* poll stubs */
/* poll stubs */
SWITCH_DECLARE
(
switch_status_t
)
switch_pollset_create
(
switch_pollset_t
**
pollset
,
uint32_t
size
,
switch_memory_pool_t
*
p
,
uint32_t
flags
)
SWITCH_DECLARE
(
switch_status_t
)
switch_pollset_create
(
switch_pollset_t
**
pollset
,
uint32_t
size
,
switch_memory_pool_t
*
p
ool
,
uint32_t
flags
)
{
{
return
apr_pollset_create
(
pollset
,
size
,
p
,
flags
);
return
apr_pollset_create
(
pollset
,
size
,
p
ool
,
flags
);
}
}
SWITCH_DECLARE
(
switch_status_t
)
switch_pollset_add
(
switch_pollset_t
*
pollset
,
const
switch_pollfd_t
*
descriptor
)
SWITCH_DECLARE
(
switch_status_t
)
switch_pollset_add
(
switch_pollset_t
*
pollset
,
const
switch_pollfd_t
*
descriptor
)
...
@@ -1108,9 +1108,9 @@ SWITCH_DECLARE(int) switch_vasprintf(char **ret, const char *fmt, va_list ap)
...
@@ -1108,9 +1108,9 @@ SWITCH_DECLARE(int) switch_vasprintf(char **ret, const char *fmt, va_list ap)
#endif
#endif
}
}
SWITCH_DECLARE
(
switch_status_t
)
switch_match_glob
(
const
char
*
pattern
,
switch_array_header_t
**
result
,
switch_memory_pool_t
*
p
)
SWITCH_DECLARE
(
switch_status_t
)
switch_match_glob
(
const
char
*
pattern
,
switch_array_header_t
**
result
,
switch_memory_pool_t
*
p
ool
)
{
{
return
apr_match_glob
(
pattern
,
(
apr_array_header_t
**
)
result
,
p
);
return
apr_match_glob
(
pattern
,
(
apr_array_header_t
**
)
result
,
p
ool
);
}
}
/**
/**
...
@@ -1119,9 +1119,9 @@ SWITCH_DECLARE(switch_status_t) switch_match_glob(const char *pattern, switch_ar
...
@@ -1119,9 +1119,9 @@ SWITCH_DECLARE(switch_status_t) switch_match_glob(const char *pattern, switch_ar
* @param out The file descriptor to use as output from the pipe.
* @param out The file descriptor to use as output from the pipe.
* @param pool The pool to operate on.
* @param pool The pool to operate on.
*/
*/
SWITCH_DECLARE
(
switch_status_t
)
switch_file_pipe_create
(
switch_file_t
**
in
,
switch_file_t
**
out
,
switch_memory_pool_t
*
p
)
SWITCH_DECLARE
(
switch_status_t
)
switch_file_pipe_create
(
switch_file_t
**
in
,
switch_file_t
**
out
,
switch_memory_pool_t
*
p
ool
)
{
{
return
apr_file_pipe_create
((
apr_file_t
**
)
in
,
(
apr_file_t
**
)
out
,
p
);
return
apr_file_pipe_create
((
apr_file_t
**
)
in
,
(
apr_file_t
**
)
out
,
p
ool
);
}
}
/**
/**
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论