mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
// Copyright 2017 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_QUIC_HTTP_TOOLS_QUIC_HTTP_RANDOM_UTIL_H_
|
|
#define NET_QUIC_HTTP_TOOLS_QUIC_HTTP_RANDOM_UTIL_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "net/quic/platform/api/quic_string.h"
|
|
#include "net/quic/platform/api/quic_test_random.h"
|
|
|
|
namespace net {
|
|
namespace test {
|
|
|
|
// Returns a random integer in the range [lo, hi).
|
|
size_t GenerateUniformInRange(size_t lo, size_t hi, QuicTestRandomBase* rng);
|
|
|
|
// Generate a std::string with the allowed character set for HTTP/2 /
|
|
// HPQUIC_HTTP_ACK header names.
|
|
QuicString GenerateQuicHttpHeaderName(size_t len, QuicTestRandomBase* rng);
|
|
|
|
// Generate a std::string with the web-safe std::string character set of
|
|
// specified len.
|
|
QuicString GenerateWebSafeString(size_t len, QuicTestRandomBase* rng);
|
|
|
|
// Generate a std::string with the web-safe std::string character set of length
|
|
// [lo, hi).
|
|
QuicString GenerateWebSafeString(size_t lo, size_t hi, QuicTestRandomBase* rng);
|
|
|
|
// Returns a random integer in the range [0, max], with a bias towards producing
|
|
// lower numbers.
|
|
size_t GenerateRandomSizeSkewedLow(size_t max, QuicTestRandomBase* rng);
|
|
|
|
} // namespace test
|
|
} // namespace net
|
|
|
|
#endif // NET_QUIC_HTTP_TOOLS_QUIC_HTTP_RANDOM_UTIL_H_
|