summaryrefslogtreecommitdiff
path: root/app/src/main/java/se/leap/bitmaskclient/pluggableTransports/Obfs4Options.java
blob: 2f9cb73214b72082ecd47002853486d2b51f8b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package se.leap.bitmaskclient.pluggableTransports;

import java.io.Serializable;

public class Obfs4Options implements Serializable {
    public String cert;
    public String iatMode;
    public String remoteIP;
    public String remotePort;

    public Obfs4Options(String remoteIP, String remotePort, String cert, String iatMode) {
        this.cert = cert;
        this.iatMode = iatMode;
        this.remoteIP = remoteIP;
        this.remotePort = remotePort;
    }

}