This update supports two proxy protocol types: HTTP
and SOCKS5
. By default, if the protocol is not specified, HTTP
is assumed.
Supported Input Formats
The application can parse and handle various proxy configurations in the following formats:
-
IP Address and Port Only (HTTP is assumed by default):
- Example:
10.10.10.1:8080
- Example:
-
Explicit HTTP Protocol:
- Example:
http://10.10.10.1:8080
- Example:
-
Explicit SOCKS5 Protocol:
- Example:
socks5://10.10.10.1:8080
- Example:
-
HTTP with Username and Password:
- Example:
http://username:[email protected]:8080
- Example:
-
SOCKS5 with Username and Password:
- Example:
socks5://username:[email protected]:8080
- Example:
Examples of Supported Inputs
Input Format | Protocol Type |
---|---|
10.10.10.1:8080 |
HTTP (default) |
http://10.10.10.1:8080 |
HTTP |
socks5://10.10.10.1:8080 |
SOCKS5 |
http://username:[email protected]:8080 |
HTTP |
socks5://username:[email protected]:8080 |
SOCKS5 |