mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
socket: Add RawConnect method
This commit is contained in:
parent
679e2a7115
commit
167dfdd4ed
@ -293,6 +293,27 @@ int InitSocketHandleForWebSocketRequest(
|
|||||||
proxy_auth_callback);
|
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) {
|
||||||
|
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,
|
||||||
|
0, socket_handle, HttpNetworkSession::NORMAL_SOCKET_POOL,
|
||||||
|
std::move(callback), ClientSocketPool::ProxyAuthCallback());
|
||||||
|
}
|
||||||
|
|
||||||
int PreconnectSocketsForHttpRequest(
|
int PreconnectSocketsForHttpRequest(
|
||||||
ClientSocketPoolManager::SocketGroupType group_type,
|
ClientSocketPoolManager::SocketGroupType group_type,
|
||||||
const HostPortPair& endpoint,
|
const HostPortPair& endpoint,
|
||||||
|
@ -142,6 +142,19 @@ int InitSocketHandleForWebSocketRequest(
|
|||||||
CompletionOnceCallback callback,
|
CompletionOnceCallback callback,
|
||||||
const ClientSocketPool::ProxyAuthCallback& proxy_auth_callback);
|
const ClientSocketPool::ProxyAuthCallback& proxy_auth_callback);
|
||||||
|
|
||||||
|
NET_EXPORT 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);
|
||||||
|
|
||||||
// Similar to InitSocketHandleForHttpRequest except that it initiates the
|
// Similar to InitSocketHandleForHttpRequest except that it initiates the
|
||||||
// desired number of preconnect streams from the relevant socket pool.
|
// desired number of preconnect streams from the relevant socket pool.
|
||||||
int PreconnectSocketsForHttpRequest(
|
int PreconnectSocketsForHttpRequest(
|
||||||
|
Loading…
Reference in New Issue
Block a user