made work around not being a work around any more

This commit is contained in:
Daniel Gultsch 2014-03-26 00:17:26 +01:00
parent 8b85b603d3
commit 0c37abf1e9
2 changed files with 2 additions and 6 deletions

View File

@ -96,9 +96,8 @@ public class DNSHelper {
++i;
}
builder.replace(0, 1, "");
//TODO: workaround. speak proper dns later
if (!builder.toString().contains(".")) {
byte type = receiveData[i+1];
if (type!=-64) {
namePort.putString("error", "nosrv");
return namePort;
}

View File

@ -47,12 +47,9 @@ public class XmlReader {
public Tag readTag() throws XmlPullParserException, IOException {
if (wakeLock.isHeld()) {
//Log.d(LOGTAG,"there was a wake lock. releasing it till next event");
wakeLock.release(); //release wake look while waiting on next parser event
}
//Log.d(LOGTAG,"waiting for new event...");
while(parser.next() != XmlPullParser.END_DOCUMENT) {
//Log.d(LOGTAG,"found new event. acquiring wake lock");
wakeLock.acquire();
if (parser.getEventType() == XmlPullParser.START_TAG) {
Tag tag = Tag.start(parser.getName());