httpdns 2

This commit is contained in:
wangcongtao
2020-11-18 15:12:24 +08:00
parent ac6c217507
commit 9c0d4a0181
28 changed files with 351 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ public
* @author congtaowang
* @since 2020/11/18
*
* 描述
* 将HOST转换为HttpDNS的ip
*/
interface HttpDns {

View File

@@ -164,7 +164,8 @@ public final class NetConfig {
return httpDns;
}
public void setHttpDns( HttpDns httpDns ) {
public NetConfig setHttpDns( HttpDns httpDns ) {
this.httpDns = httpDns;
return this;
}
}