mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-27 02:09:41 +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
|
minifyEnabled true
|
||||||
useProguard = true
|
useProguard = true
|
||||||
proguardFiles.add(file('proguard-rules.pro'))
|
proguardFiles.add(file('proguard-rules.pro'))
|
||||||
// TODO remove on stable release
|
|
||||||
ndk {
|
ndk {
|
||||||
debuggable true
|
debuggable true
|
||||||
}
|
}
|
||||||
|
|
|
@ -500,7 +500,6 @@ public class DatabaseHelper extends SQLiteOpenHelper {
|
||||||
return (rows == 0);
|
return (rows == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO optimize with raw SQL
|
|
||||||
public void updateUsage(Usage usage, String dname) {
|
public void updateUsage(Usage usage, String dname) {
|
||||||
mLock.writeLock().lock();
|
mLock.writeLock().lock();
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -24,9 +24,9 @@ public class Packet {
|
||||||
public int version;
|
public int version;
|
||||||
public int protocol;
|
public int protocol;
|
||||||
public String flags;
|
public String flags;
|
||||||
public String saddr; // TODO byte[]
|
public String saddr;
|
||||||
public int sport;
|
public int sport;
|
||||||
public String daddr; // TODO byte[]
|
public String daddr;
|
||||||
public int dport;
|
public int dport;
|
||||||
public String data;
|
public String data;
|
||||||
public int uid;
|
public int uid;
|
||||||
|
|
Loading…
Reference in a new issue