chromium/net/third_party/quiche/src/quiche/quic/core/quic_crypto_handshaker.cc

// Copyright (c) 2012 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 "quiche/quic/core/quic_crypto_handshaker.h"

#include "quiche/quic/core/quic_session.h"

namespace quic {

#define ENDPOINT

QuicCryptoHandshaker::QuicCryptoHandshaker(QuicCryptoStream* stream,
                                           QuicSession* session)
    :{}

QuicCryptoHandshaker::~QuicCryptoHandshaker() {}

void QuicCryptoHandshaker::SendHandshakeMessage(
    const CryptoHandshakeMessage& message, EncryptionLevel level) {}

void QuicCryptoHandshaker::OnError(CryptoFramer* framer) {}

void QuicCryptoHandshaker::OnHandshakeMessage(
    const CryptoHandshakeMessage& message) {}

CryptoMessageParser* QuicCryptoHandshaker::crypto_message_parser() {}

size_t QuicCryptoHandshaker::BufferSizeLimitForLevel(EncryptionLevel) const {}

#undef ENDPOINT  // undef for jumbo builds
}  // namespace quic