dschinazi | 1c99fcf | 2019-12-13 11:54:22 -0800 | [diff] [blame] | 1 | // 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 | |
| 10 | namespace quic { |
| 11 | namespace 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. |
| 17 | bool 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_ |