Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
721db9ea
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
721db9ea
编写于
9月 08, 2015
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
82ac4c58
09219daf
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
80 addition
and
1 deletion
+80
-1
.hgtags
.hgtags
+1
-0
src/share/classes/java/net/Inet4Address.java
src/share/classes/java/net/Inet4Address.java
+2
-0
src/share/classes/java/net/InetAddress.java
src/share/classes/java/net/InetAddress.java
+1
-1
src/share/native/java/net/InetAddress.c
src/share/native/java/net/InetAddress.c
+3
-0
src/share/native/java/net/net_util.c
src/share/native/java/net/net_util.c
+1
-0
src/share/native/java/net/net_util.h
src/share/native/java/net/net_util.h
+1
-0
test/java/net/InetAddress/getOriginalHostName.java
test/java/net/InetAddress/getOriginalHostName.java
+71
-0
未找到文件。
.hgtags
浏览文件 @
721db9ea
...
...
@@ -470,6 +470,7 @@ e9de15763a5a3cef64ef1d4bc40a018d4d572325 jdk8u65-b09
ed9e7ba6a419a80cbcdc60f4634388af054bdc76 jdk8u65-b10
22ae2d11ff54b758b648b5fcd6ea90e03a4c6781 jdk8u65-b11
7eb9c6cf007cc6176ccb700f995a3e9b81746bfd jdk8u65-b12
64ac5b0b4b9e7a587fc0606fada354c6fa4a7a86 jdk8u65-b13
e9f82302d5fdef8a0976640e09363895e9dcde3c jdk8u66-b00
64d7bd4e98150447916f210e3bfd6875a4c2728a jdk8u66-b01
d8210091911b14930192abd3138ee37c281fb632 jdk8u66-b02
...
...
src/share/classes/java/net/Inet4Address.java
浏览文件 @
721db9ea
...
...
@@ -117,11 +117,13 @@ class Inet4Address extends InetAddress {
holder
().
address
=
address
;
}
}
holder
().
originalHostName
=
hostName
;
}
Inet4Address
(
String
hostName
,
int
address
)
{
holder
().
hostName
=
hostName
;
holder
().
family
=
IPv4
;
holder
().
address
=
address
;
holder
().
originalHostName
=
hostName
;
}
/**
...
...
src/share/classes/java/net/InetAddress.java
浏览文件 @
721db9ea
...
...
@@ -217,7 +217,7 @@ class InetAddress implements java.io.Serializable {
*
* Note: May define a new public method in the future if necessary.
*/
private
String
originalHostName
;
String
originalHostName
;
InetAddressHolder
()
{}
...
...
src/share/native/java/net/InetAddress.c
浏览文件 @
721db9ea
...
...
@@ -38,6 +38,7 @@ jfieldID ia_holderID;
jfieldID
iac_addressID
;
jfieldID
iac_familyID
;
jfieldID
iac_hostNameID
;
jfieldID
iac_origHostNameID
;
jfieldID
ia_preferIPv6AddressID
;
/*
...
...
@@ -64,4 +65,6 @@ Java_java_net_InetAddress_init(JNIEnv *env, jclass cls) {
iac_familyID
=
(
*
env
)
->
GetFieldID
(
env
,
iac_class
,
"family"
,
"I"
);
CHECK_NULL
(
iac_familyID
);
iac_hostNameID
=
(
*
env
)
->
GetFieldID
(
env
,
iac_class
,
"hostName"
,
"Ljava/lang/String;"
);
CHECK_NULL
(
iac_hostNameID
);
iac_origHostNameID
=
(
*
env
)
->
GetFieldID
(
env
,
iac_class
,
"originalHostName"
,
"Ljava/lang/String;"
);
}
src/share/native/java/net/net_util.c
浏览文件 @
721db9ea
...
...
@@ -199,6 +199,7 @@ void setInetAddress_hostName(JNIEnv *env, jobject iaObj, jobject host) {
initInetAddrs
(
env
);
holder
=
(
*
env
)
->
GetObjectField
(
env
,
iaObj
,
ia_holderID
);
(
*
env
)
->
SetObjectField
(
env
,
holder
,
iac_hostNameID
,
host
);
(
*
env
)
->
SetObjectField
(
env
,
holder
,
iac_origHostNameID
,
host
);
}
int
getInetAddress_addr
(
JNIEnv
*
env
,
jobject
iaObj
)
{
...
...
src/share/native/java/net/net_util.h
浏览文件 @
721db9ea
...
...
@@ -53,6 +53,7 @@ extern jclass ia_class;
extern
jfieldID
iac_addressID
;
extern
jfieldID
iac_familyID
;
extern
jfieldID
iac_hostNameID
;
extern
jfieldID
iac_origHostNameID
;
extern
jfieldID
ia_preferIPv6AddressID
;
/** (Inet6Address accessors)
...
...
test/java/net/InetAddress/getOriginalHostName.java
0 → 100644
浏览文件 @
721db9ea
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8133196
* @summary test functionality of getOriginalHostName(InetAddress)
*/
import
java.io.*
;
import
java.net.InetAddress
;
import
sun.misc.JavaNetAccess
;
import
sun.misc.SharedSecrets
;
public
class
getOriginalHostName
{
private
static
final
JavaNetAccess
jna
=
SharedSecrets
.
getJavaNetAccess
();
public
static
void
main
(
String
[]
args
)
throws
Exception
{
final
String
HOST
=
"dummyserver.java.net"
;
InetAddress
ia
=
null
;
ia
=
InetAddress
.
getByName
(
HOST
);
testInetAddress
(
ia
,
HOST
);
ia
=
InetAddress
.
getByName
(
"255.255.255.0"
);
testInetAddress
(
ia
,
null
);
ia
=
InetAddress
.
getByAddress
(
new
byte
[]{
1
,
1
,
1
,
1
});
testInetAddress
(
ia
,
null
);
ia
=
InetAddress
.
getLocalHost
();
testInetAddress
(
ia
,
ia
.
getHostName
());
ia
=
InetAddress
.
getLoopbackAddress
();
testInetAddress
(
ia
,
ia
.
getHostName
());
}
private
static
void
testInetAddress
(
InetAddress
ia
,
String
expected
)
throws
Exception
{
System
.
out
.
println
(
"Testing InetAddress: "
+
ia
);
System
.
out
.
println
(
"Expecting original hostname of : "
+
expected
);
String
origHostName
=
jna
.
getOriginalHostName
(
ia
);
System
.
out
.
println
(
"via JavaNetAccess: "
+
origHostName
);
if
(
origHostName
==
null
&&
expected
!=
null
)
{
throw
new
RuntimeException
(
"Unexpected null. Testing:"
+
expected
);
}
else
if
(
expected
!=
null
&&
!
origHostName
.
equals
(
expected
))
{
throw
new
RuntimeException
(
"Unexpected hostname :"
+
origHostName
);
}
else
if
(
expected
==
null
&&
origHostName
!=
null
)
{
throw
new
RuntimeException
(
"Unexpected origHostName: "
+
origHostName
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录