mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
socket: Support NetworkIsolationKey in RawConnect
This commit is contained in:
parent
6a791df12e
commit
d9bf3636ed
@ -289,23 +289,25 @@ int InitSocketHandleForWebSocketRequest(
|
||||
proxy_auth_callback);
|
||||
}
|
||||
|
||||
int InitSocketHandleForRawConnect2(const HostPortPair& endpoint,
|
||||
HttpNetworkSession* session,
|
||||
int request_load_flags,
|
||||
RequestPriority request_priority,
|
||||
const ProxyInfo& proxy_info,
|
||||
const SSLConfig& ssl_config_for_origin,
|
||||
const SSLConfig& ssl_config_for_proxy,
|
||||
PrivacyMode privacy_mode,
|
||||
const NetLogWithSource& net_log,
|
||||
ClientSocketHandle* socket_handle,
|
||||
CompletionOnceCallback callback) {
|
||||
int InitSocketHandleForRawConnect2(
|
||||
const HostPortPair& endpoint,
|
||||
HttpNetworkSession* session,
|
||||
int request_load_flags,
|
||||
RequestPriority request_priority,
|
||||
const ProxyInfo& proxy_info,
|
||||
const SSLConfig& ssl_config_for_origin,
|
||||
const SSLConfig& ssl_config_for_proxy,
|
||||
PrivacyMode privacy_mode,
|
||||
const NetworkIsolationKey& network_isolation_key,
|
||||
const NetLogWithSource& net_log,
|
||||
ClientSocketHandle* socket_handle,
|
||||
CompletionOnceCallback callback) {
|
||||
DCHECK(socket_handle);
|
||||
return InitSocketPoolHelper(
|
||||
ClientSocketPoolManager::NORMAL_GROUP, endpoint, request_load_flags,
|
||||
request_priority, session, proxy_info, ssl_config_for_origin,
|
||||
ssl_config_for_proxy, /*is_for_websockets=*/true, privacy_mode,
|
||||
NetworkIsolationKey(), /*disable_secure_dns=*/true, SocketTag(), net_log,
|
||||
network_isolation_key, /*disable_secure_dns=*/true, SocketTag(), net_log,
|
||||
0, socket_handle, HttpNetworkSession::NORMAL_SOCKET_POOL,
|
||||
std::move(callback), ClientSocketPool::ProxyAuthCallback());
|
||||
}
|
||||
|
@ -151,6 +151,7 @@ NET_EXPORT int InitSocketHandleForRawConnect2(
|
||||
const SSLConfig& ssl_config_for_origin,
|
||||
const SSLConfig& ssl_config_for_proxy,
|
||||
PrivacyMode privacy_mode,
|
||||
const NetworkIsolationKey& network_isolation_key,
|
||||
const NetLogWithSource& net_log,
|
||||
ClientSocketHandle* socket_handle,
|
||||
CompletionOnceCallback callback);
|
||||
|
Loading…
Reference in New Issue
Block a user