All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zebrunner.carina.webdriver.proxy.mode.SocksMode Maven / Gradle / Ivy

package com.zebrunner.carina.webdriver.proxy.mode;

/**
 * In this mode, mitmproxy acts as a SOCKS5 proxy.
 * This is similar to the regular proxy mode, but using SOCKS5 instead of HTTP
 * for connection establishment with the proxy.
 * For more info check doc
 */
public class SocksMode extends Mode {

    public SocksMode() {
        super("socks5");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy