NetGuard/app/src/main/java/eu/faircode/netguard/Allowed.java

17 lines
293 B
Java
Raw Normal View History

2016-02-07 18:24:26 +00:00
package eu.faircode.netguard;
public class Allowed {
2016-02-08 15:34:54 +00:00
public String raddr;
public int rport;
2016-02-07 18:24:26 +00:00
public Allowed() {
2016-02-08 15:34:54 +00:00
this.raddr = null;
this.rport = 0;
2016-02-07 18:24:26 +00:00
}
2016-02-08 15:34:54 +00:00
public Allowed(String raddr, int rport) {
this.raddr = raddr;
this.rport = rport;
2016-02-07 18:24:26 +00:00
}
}