mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-01 09:46:09 +03:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
|
// Copyright 2016 The Chromium Authors
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/spdy/multiplexed_session.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
MultiplexedSessionHandle::MultiplexedSessionHandle(
|
||
|
base::WeakPtr<MultiplexedSession> session)
|
||
|
: session_(session) {
|
||
|
SaveSSLInfo();
|
||
|
}
|
||
|
|
||
|
MultiplexedSessionHandle::~MultiplexedSessionHandle() = default;
|
||
|
|
||
|
int MultiplexedSessionHandle::GetRemoteEndpoint(IPEndPoint* endpoint) {
|
||
|
if (!session_)
|
||
|
return ERR_SOCKET_NOT_CONNECTED;
|
||
|
|
||
|
return session_->GetRemoteEndpoint(endpoint);
|
||
|
}
|
||
|
|
||
|
bool MultiplexedSessionHandle::GetSSLInfo(SSLInfo* ssl_info) const {
|
||
|
if (!has_ssl_info_)
|
||
|
return false;
|
||
|
|
||
|
*ssl_info = ssl_info_;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void MultiplexedSessionHandle::SaveSSLInfo() {
|
||
|
has_ssl_info_ = session_->GetSSLInfo(&ssl_info_);
|
||
|
}
|
||
|
|
||
|
base::StringPiece MultiplexedSessionHandle::GetAcceptChViaAlps(
|
||
|
const url::SchemeHostPort& scheme_host_port) const {
|
||
|
return session_ ? session_->GetAcceptChViaAlps(scheme_host_port)
|
||
|
: base::StringPiece();
|
||
|
}
|
||
|
|
||
|
} // namespace net
|