mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-26 09:48:46 +00:00
Removed to do's
This commit is contained in:
parent
63ac3edcf4
commit
08034a2c0e
3 changed files with 2 additions and 4 deletions
|
@ -46,7 +46,6 @@ model {
|
|||
minifyEnabled true
|
||||
useProguard = true
|
||||
proguardFiles.add(file('proguard-rules.pro'))
|
||||
// TODO remove on stable release
|
||||
ndk {
|
||||
debuggable true
|
||||
}
|
||||
|
|
|
@ -500,7 +500,6 @@ public class DatabaseHelper extends SQLiteOpenHelper {
|
|||
return (rows == 0);
|
||||
}
|
||||
|
||||
// TODO optimize with raw SQL
|
||||
public void updateUsage(Usage usage, String dname) {
|
||||
mLock.writeLock().lock();
|
||||
try {
|
||||
|
|
|
@ -24,9 +24,9 @@ public class Packet {
|
|||
public int version;
|
||||
public int protocol;
|
||||
public String flags;
|
||||
public String saddr; // TODO byte[]
|
||||
public String saddr;
|
||||
public int sport;
|
||||
public String daddr; // TODO byte[]
|
||||
public String daddr;
|
||||
public int dport;
|
||||
public String data;
|
||||
public int uid;
|
||||
|
|
Loading…
Reference in a new issue