mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
|
// 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.
|
||
|
|
||
|
#ifndef NET_TOOLS_QUIC_QUIC_SIMPLE_SERVER_SESSION_HELPER_H_
|
||
|
#define NET_TOOLS_QUIC_QUIC_SIMPLE_SERVER_SESSION_HELPER_H_
|
||
|
|
||
|
#include "net/third_party/quic/core/crypto/quic_random.h"
|
||
|
#include "net/third_party/quic/core/quic_server_session_base.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
// Simple helper for server sessions which generates a new random
|
||
|
// connection ID for stateless rejects.
|
||
|
class QuicSimpleServerSessionHelper : public QuicCryptoServerStream::Helper {
|
||
|
public:
|
||
|
explicit QuicSimpleServerSessionHelper(QuicRandom* random);
|
||
|
|
||
|
~QuicSimpleServerSessionHelper() override;
|
||
|
|
||
|
QuicConnectionId GenerateConnectionIdForReject(
|
||
|
QuicConnectionId /*connection_id*/) const override;
|
||
|
|
||
|
bool CanAcceptClientHello(const CryptoHandshakeMessage& message,
|
||
|
const QuicSocketAddress& client_address,
|
||
|
const QuicSocketAddress& peer_address,
|
||
|
const QuicSocketAddress& self_address,
|
||
|
std::string* error_details) const override;
|
||
|
|
||
|
private:
|
||
|
QuicRandom* random_; // Unowned.
|
||
|
};
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_TOOLS_QUIC_QUIC_SIMPLE_SERVER_SESSION_HELPER_H_
|