blob: 6fded096862e833b2ed642bc5fc36bb85455dca0 [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>
Steve Anton10542f22019-01-11 09:11:00 -080015#include "rtc_base/crypt_string.h"
16#include "rtc_base/socket_address.h"
deadbeeff137e972017-03-23 15:45:49 -070017
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020018namespace rtc {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000019
Yves Gerey665174f2018-06-19 15:03:05 +020020enum ProxyType { PROXY_NONE, PROXY_HTTPS, PROXY_SOCKS5, PROXY_UNKNOWN };
21const char* ProxyToString(ProxyType proxy);
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020022
23struct ProxyInfo {
24 ProxyType type;
25 SocketAddress address;
26 std::string autoconfig_url;
27 bool autodetect;
28 std::string bypass_list;
29 std::string username;
30 CryptString password;
31
32 ProxyInfo();
33 ~ProxyInfo();
34};
35
Yves Gerey665174f2018-06-19 15:03:05 +020036} // namespace rtc
Henrik Kjellanderec78f1c2017-06-29 07:52:50 +020037
Steve Anton10542f22019-01-11 09:11:00 -080038#endif // RTC_BASE_PROXY_INFO_H_