Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
20a5b2ef
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看板
提交
20a5b2ef
编写于
3月 23, 2017
作者:
D
dfuchs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8176751: Better URL connections
Reviewed-by: chegar, michaelm, rhalade, rpatil, vtewari
上级
127bf70f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
43 addition
and
7 deletion
+43
-7
src/share/classes/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnectionOldImpl.java
...nternal/www/protocol/https/HttpsURLConnectionOldImpl.java
+10
-1
src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java
.../classes/sun/net/www/protocol/http/HttpURLConnection.java
+23
-5
src/share/classes/sun/net/www/protocol/https/HttpsURLConnectionImpl.java
...es/sun/net/www/protocol/https/HttpsURLConnectionImpl.java
+10
-1
未找到文件。
src/share/classes/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnectionOldImpl.java
浏览文件 @
20a5b2ef
...
...
@@ -38,6 +38,7 @@ package com.sun.net.ssl.internal.www.protocol.https;
import
java.net.URL
;
import
java.net.Proxy
;
import
java.net.ProtocolException
;
import
java.net.MalformedURLException
;
import
java.io.*
;
import
javax.net.ssl.*
;
import
java.security.Permission
;
...
...
@@ -75,10 +76,18 @@ public class HttpsURLConnectionOldImpl
this
(
u
,
null
,
handler
);
}
static
URL
checkURL
(
URL
u
)
throws
IOException
{
if
(
u
!=
null
)
{
if
(
u
.
toExternalForm
().
indexOf
(
'\n'
)
>
-
1
)
{
throw
new
MalformedURLException
(
"Illegal character in URL"
);
}
}
return
u
;
}
// For both copies of the file, uncomment one line and comment the other
// HttpsURLConnectionImpl(URL u, Handler handler) throws IOException {
HttpsURLConnectionOldImpl
(
URL
u
,
Proxy
p
,
Handler
handler
)
throws
IOException
{
super
(
u
);
super
(
checkURL
(
u
)
);
delegate
=
new
DelegateHttpsURLConnection
(
url
,
p
,
handler
,
this
);
}
...
...
src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java
浏览文件 @
20a5b2ef
...
...
@@ -825,18 +825,36 @@ public class HttpURLConnection extends java.net.HttpURLConnection {
this
(
u
,
null
,
handler
);
}
public
HttpURLConnection
(
URL
u
,
String
host
,
int
port
)
{
this
(
u
,
new
Proxy
(
Proxy
.
Type
.
HTTP
,
InetSocketAddress
.
createUnresolved
(
host
,
port
)));
private
static
String
checkHost
(
String
h
)
throws
IOException
{
if
(
h
!=
null
)
{
if
(
h
.
indexOf
(
'\n'
)
>
-
1
)
{
throw
new
MalformedURLException
(
"Illegal character in host"
);
}
}
return
h
;
}
public
HttpURLConnection
(
URL
u
,
String
host
,
int
port
)
throws
IOException
{
this
(
u
,
new
Proxy
(
Proxy
.
Type
.
HTTP
,
InetSocketAddress
.
createUnresolved
(
checkHost
(
host
),
port
)));
}
/** this constructor is used by other protocol handlers such as ftp
that want to use http to fetch urls on their behalf.*/
public
HttpURLConnection
(
URL
u
,
Proxy
p
)
{
public
HttpURLConnection
(
URL
u
,
Proxy
p
)
throws
IOException
{
this
(
u
,
p
,
new
Handler
());
}
protected
HttpURLConnection
(
URL
u
,
Proxy
p
,
Handler
handler
)
{
super
(
u
);
private
static
URL
checkURL
(
URL
u
)
throws
IOException
{
if
(
u
!=
null
)
{
if
(
u
.
toExternalForm
().
indexOf
(
'\n'
)
>
-
1
)
{
throw
new
MalformedURLException
(
"Illegal character in URL"
);
}
}
return
u
;
}
protected
HttpURLConnection
(
URL
u
,
Proxy
p
,
Handler
handler
)
throws
IOException
{
super
(
checkURL
(
u
));
requests
=
new
MessageHeader
();
responses
=
new
MessageHeader
();
userHeaders
=
new
MessageHeader
();
...
...
src/share/classes/sun/net/www/protocol/https/HttpsURLConnectionImpl.java
浏览文件 @
20a5b2ef
...
...
@@ -38,6 +38,7 @@ package sun.net.www.protocol.https;
import
java.net.URL
;
import
java.net.Proxy
;
import
java.net.ProtocolException
;
import
java.net.MalformedURLException
;
import
java.io.*
;
import
javax.net.ssl.*
;
import
java.security.Permission
;
...
...
@@ -79,10 +80,18 @@ public class HttpsURLConnectionImpl
this
(
u
,
null
,
handler
);
}
static
URL
checkURL
(
URL
u
)
throws
IOException
{
if
(
u
!=
null
)
{
if
(
u
.
toExternalForm
().
indexOf
(
'\n'
)
>
-
1
)
{
throw
new
MalformedURLException
(
"Illegal character in URL"
);
}
}
return
u
;
}
// For both copies of the file, uncomment one line and comment the other
HttpsURLConnectionImpl
(
URL
u
,
Proxy
p
,
Handler
handler
)
throws
IOException
{
// HttpsURLConnectionOldImpl(URL u, Proxy p, Handler handler) throws IOException {
super
(
u
);
super
(
checkURL
(
u
)
);
delegate
=
new
DelegateHttpsURLConnection
(
url
,
p
,
handler
,
this
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录