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

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

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

/**
 * The WireGuard mode works in the same way as transparent mode,
 * except that setup and routing client traffic to mitmproxy are different.
 * In this mode, mitmproxy runs an internal WireGuard server, which devices can be
 * connected to by using standard WireGuard client applications.
 * For more info check doc
 */
public class WireGuardMode extends Mode {

    private final Integer port;

    public WireGuardMode() {
        this(null);
    }

    public WireGuardMode(Integer port) {
        super("wireguard");
        this.port = port;
    }

    @Override
    public String toString() {
        String name = getName();
        if (port != null) {
            name += PORT_SYMBOL + port;
        }
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy