mirror of https://github.com/M66B/NetGuard.git
New file
This commit is contained in:
parent
741da619e1
commit
eacdb900b9
|
@ -0,0 +1,16 @@
|
|||
package eu.faircode.netguard;
|
||||
|
||||
public class Allowed {
|
||||
public String daddr;
|
||||
public int dport;
|
||||
|
||||
public Allowed() {
|
||||
this.daddr = "test";
|
||||
this.dport = 80;
|
||||
}
|
||||
|
||||
public Allowed(String daddr, int dport) {
|
||||
this.daddr = daddr;
|
||||
this.dport = dport;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue