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
af5216e763
commit
a60d168fb5
@ -293,7 +293,8 @@ int InitSocketHandleForWebSocketRequest(
|
||||
proxy_auth_callback);
|
||||
}
|
||||
|
||||
int InitSocketHandleForRawConnect2(const HostPortPair& endpoint,
|
||||
int InitSocketHandleForRawConnect2(
|
||||
const HostPortPair& endpoint,
|
||||
HttpNetworkSession* session,
|
||||
int request_load_flags,
|
||||
RequestPriority request_priority,
|
||||
@ -301,6 +302,7 @@ int InitSocketHandleForRawConnect2(const HostPortPair& endpoint,
|
||||
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) {
|
||||
@ -309,7 +311,7 @@ int InitSocketHandleForRawConnect2(const HostPortPair& endpoint,
|
||||
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