blob: e1e7d0d14318c8dc1463b69e1066153453fdd287 [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/socket/stream_socket.h"
#include "base/notreached.h"
namespace net {
void StreamSocket::SetBeforeConnectCallback(
const BeforeConnectCallback& before_connect_callback) {
NOTREACHED();
}
base::Optional<base::StringPiece> StreamSocket::GetPeerApplicationSettings()
const {
return base::nullopt;
}
void StreamSocket::GetSSLCertRequestInfo(
SSLCertRequestInfo* cert_request_info) const {
NOTREACHED();
}
StreamSocket::SocketMemoryStats::SocketMemoryStats()
: total_size(0), buffer_size(0), cert_count(0), cert_size(0) {}
StreamSocket::SocketMemoryStats::~SocketMemoryStats() = default;
int StreamSocket::ConfirmHandshake(CompletionOnceCallback callback) {
return OK;
}
} // namespace net