blob: 4ddc2d708469b9220ffcafdf99eda028ab900479 [file] [log] [blame]
dschinazi1c99fcf2019-12-13 11:54:22 -08001// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_QUIC_MASQUE_MASQUE_CLIENT_TOOLS_H_
6#define QUICHE_QUIC_MASQUE_MASQUE_CLIENT_TOOLS_H_
7
8#include "net/third_party/quiche/src/quic/masque/masque_epoll_client.h"
9
10namespace quic {
11namespace tools {
12
13// Sends an HTTP GET request for |url_string|, proxied over the MASQUE
14// connection represented by |masque_client|. A valid and owned |epoll_server|
15// is required. |disable_certificate_verification| allows disabling verification
16// of the HTTP server's TLS certificate.
17bool SendEncapsulatedMasqueRequest(MasqueEpollClient* masque_client,
18 QuicEpollServer* epoll_server,
19 std::string url_string,
20 bool disable_certificate_verification);
21
22} // namespace tools
23} // namespace quic
24
25#endif // QUICHE_QUIC_MASQUE_MASQUE_CLIENT_TOOLS_H_