Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
92fb3394
提交
92fb3394
authored
4月 04, 2012
作者:
Anthony Minessale
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FS-4071 --resolve
上级
79c214d4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
33 行增加
和
17 行删除
+33
-17
install-sh
libs/ldns/install-sh
+18
-11
natpmp.c
libs/libnatpmp/natpmp.c
+10
-3
.update
libs/sofia-sip/.update
+1
-1
su_localinfo.c
libs/sofia-sip/libsofia-sip-ua/su/su_localinfo.c
+4
-2
没有找到文件。
libs/ldns/install-sh
浏览文件 @
92fb3394
#!/bin/sh
# install - install a program, script, or datafile
scriptversion
=
20
09-04-28
.21
;
# UTC
scriptversion
=
20
11-01-19
.21
;
# UTC
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
...
...
@@ -156,6 +156,10 @@ while test $# -ne 0; do
-s
)
stripcmd
=
$stripprog
;;
-t
)
dst_arg
=
$2
# Protect names problematic for `test' and other utilities.
case
$dst_arg
in
-
*
|
[=
\(\)
!]
)
dst_arg
=
./
$dst_arg
;;
esac
shift
;;
-T
)
no_target_directory
=
true
;;
...
...
@@ -186,6 +190,10 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
fi
shift
# arg
dst_arg
=
$arg
# Protect names problematic for `test' and other utilities.
case
$dst_arg
in
-
*
|
[=
\(\)
!]
)
dst_arg
=
./
$dst_arg
;;
esac
done
fi
...
...
@@ -200,7 +208,11 @@ if test $# -eq 0; then
fi
if
test
-z
"
$dir_arg
"
;
then
trap
'(exit $?); exit'
1 2 13 15
do_exit
=
'(exit $ret); exit $ret'
trap
"ret=129;
$do_exit
"
1
trap
"ret=130;
$do_exit
"
2
trap
"ret=141;
$do_exit
"
13
trap
"ret=143;
$do_exit
"
15
# Set umask so as not to create temps with too-generous modes.
# However, 'strip' requires both read and write access to temps.
...
...
@@ -228,9 +240,9 @@ fi
for
src
do
# Protect names
starting with `-'
.
# Protect names
problematic for `test' and other utilities
.
case
$src
in
-
*
)
src
=
./
$src
;;
-
*
|
[=
\(\)
!]
)
src
=
./
$src
;;
esac
if
test
-n
"
$dir_arg
"
;
then
...
...
@@ -252,12 +264,7 @@ do
echo
"
$0
: no destination specified."
>
&2
exit
1
fi
dst
=
$dst_arg
# Protect names starting with `-'.
case
$dst
in
-
*
)
dst
=
./
$dst
;;
esac
# If destination is a directory, append the input filename; won't work
# if double slashes aren't ignored.
...
...
@@ -385,7 +392,7 @@ do
case
$dstdir
in
/
*
)
prefix
=
'/'
;;
-
*
)
prefix
=
'./'
;;
[
-
=
\(\)
!]
*
)
prefix
=
'./'
;;
*
)
prefix
=
''
;;
esac
...
...
@@ -403,7 +410,7 @@ do
for
d
do
test
-z
"
$d
"
&&
continue
test
X
"
$d
"
=
X
&&
continue
prefix
=
$prefix$d
if
test
-d
"
$prefix
"
;
then
...
...
libs/libnatpmp/natpmp.c
浏览文件 @
92fb3394
...
...
@@ -165,15 +165,22 @@ int sendnewportmappingrequest(natpmp_t * p, int protocol,
uint16_t
privateport
,
uint16_t
publicport
,
uint32_t
lifetime
)
{
uint16_t
*
n
;
uint32_t
*
m
;
if
(
!
p
||
(
protocol
!=
NATPMP_PROTOCOL_TCP
&&
protocol
!=
NATPMP_PROTOCOL_UDP
))
return
NATPMP_ERR_INVALIDARGS
;
p
->
pending_request
[
0
]
=
0
;
p
->
pending_request
[
1
]
=
(
char
)
protocol
;
p
->
pending_request
[
2
]
=
0
;
p
->
pending_request
[
3
]
=
0
;
*
((
uint16_t
*
)(
intptr_t
)(
p
->
pending_request
+
4
))
=
htons
(
privateport
);
*
((
uint16_t
*
)(
intptr_t
)(
p
->
pending_request
+
6
))
=
htons
(
publicport
);
*
((
uint32_t
*
)(
intptr_t
)(
p
->
pending_request
+
8
))
=
htonl
(
lifetime
);
n
=
(
uint16_t
*
)(
p
->
pending_request
+
4
);
*
n
=
htons
(
privateport
);
n
=
(
uint16_t
*
)(
p
->
pending_request
+
6
);
*
n
=
htons
(
publicport
);
m
=
(
uint32_t
*
)(
p
->
pending_request
+
8
);
*
m
=
htonl
(
lifetime
);
//*((uint16_t *)(p->pending_request + 4)) = htons(privateport);
//*((uint16_t *)(p->pending_request + 6)) = htons(publicport);
//*((uint32_t *)(p->pending_request + 8)) = htonl(lifetime);
p
->
pending_request_len
=
12
;
return
sendnatpmprequest
(
p
);
}
...
...
libs/sofia-sip/.update
浏览文件 @
92fb3394
Thu Mar 1 10:03:45 CS
T 2012
Wed Apr 4 16:17:37 CD
T 2012
libs/sofia-sip/libsofia-sip-ua/su/su_localinfo.c
浏览文件 @
92fb3394
...
...
@@ -409,8 +409,10 @@ static int
li_scope6
(
struct
in6_addr
const
*
ip6
)
{
if
(
IN6_IS_ADDR_V4MAPPED
(
ip6
)
||
IN6_IS_ADDR_V4COMPAT
(
ip6
))
{
uint32_t
ip4
=
*
(
uint32_t
*
)(
ip6
->
s6_addr
+
12
);
return
li_scope4
(
ip4
);
uint32_t
*
u
=
(
uint32_t
*
)(
ip6
->
s6_addr
+
12
);
uint32_t
ip4
=
*
u
;
return
li_scope4
(
ip4
);
}
else
if
(
IN6_IS_ADDR_LOOPBACK
(
ip6
))
return
LI_SCOPE_HOST
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论