blob: e6146920250d9302e3cdcb3eff135604086c1444 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef RTC_BASE_PROXY_INFO_H_
12#define RTC_BASE_PROXY_INFO_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000013
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020014#include <string>
Jonas Olssona4d87372019-07-05 19:08:33 +020015
Steve Anton10542f22019-01-11 09:11:00 -080016#include "rtc_base/crypt_string.h"
17#include "rtc_base/socket_address.h"
deadbeeff137e972017-03-23 15:45:49 -070018
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020019namespace rtc {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000020
Yves Gerey665174f2018-06-19 15:03:05 +020021enum ProxyType { PROXY_NONE, PROXY_HTTPS, PROXY_SOCKS5, PROXY_UNKNOWN };
22const char* ProxyToString(ProxyType proxy);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020023
24struct ProxyInfo {
25 ProxyType type;
26 SocketAddress address;
27 std::string autoconfig_url;
28 bool autodetect;
29 std::string bypass_list;
30 std::string username;
31 CryptString password;
32
33 ProxyInfo();
34 ~ProxyInfo();
35};
36
Yves Gerey665174f2018-06-19 15:03:05 +020037} // namespace rtc
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020038
Steve Anton10542f22019-01-11 09:11:00 -080039#endif // RTC_BASE_PROXY_INFO_H_