Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android phonegap project spamming QTAGUID messages

I have been having this problem for a while now, and while it doesn't negatively affect my application I would like to fix it if I can. I am not really sure how to describe the problem.

Basically, I have an Android PhoneGap 1.9 project, using API 15 (this happened under API 10 as well) and the LogCat logs have relentless spam from QTAGUID, specifically from my application.

08-04 14:31:30.092: I/qtaguid(15542): Failed write_ctrl(u 118) res=-1 errno=22
08-04 14:31:30.092: I/qtaguid(15542): Untagging socket 118 failed errno=-22
08-04 14:31:30.092: I/qtaguid(15542): Failed write_ctrl(u 123) res=-1 errno=22
08-04 14:31:30.092: I/qtaguid(15542): Untagging socket 123 failed errno=-22
08-04 14:31:36.338: I/qtaguid(15542): Failed write_ctrl(u 116) res=-1 errno=22
08-04 14:31:36.338: I/qtaguid(15542): Untagging socket 116 failed errno=-22
08-04 14:31:36.368: I/qtaguid(15542): Failed write_ctrl(t 116 43082816946176 1074812240) res=-1 errno=1
08-04 14:31:36.368: I/qtaguid(15542): Tagging socket 116 with tag 272f00000000(10031) for uid 1074812240 failed errno=-1
08-04 14:31:36.368: I/qtaguid(15542): Failed write_ctrl(t 118 43082816946176 1074812240) res=-1 errno=1
08-04 14:31:36.368: I/qtaguid(15542): Tagging socket 118 with tag 272f00000000(10031) for uid 1074812240 failed errno=-1
08-04 14:31:36.378: I/qtaguid(15542): Failed write_ctrl(t 123 43082816946176 1074812240) res=-1 errno=1
08-04 14:31:36.378: I/qtaguid(15542): Tagging socket 123 with tag 272f00000000(10031) for uid 1074812240 failed errno=-1
08-04 14:31:46.388: I/qtaguid(15542): Failed write_ctrl(u 116) res=-1 errno=22
08-04 14:31:46.388: I/qtaguid(15542): Untagging socket 116 failed errno=-22
08-04 14:31:46.388: I/qtaguid(15542): Failed write_ctrl(u 118) res=-1 errno=22
08-04 14:31:46.388: I/qtaguid(15542): Untagging socket 118 failed errno=-22
08-04 14:31:46.388: I/qtaguid(15542): Failed write_ctrl(u 123) res=-1 errno=22
08-04 14:31:46.388: I/qtaguid(15542): Untagging socket 123 failed errno=-22
08-04 14:31:46.438: I/qtaguid(15542): Failed write_ctrl(t 116 43082816946176 825047349) res=-1 errno=1
08-04 14:31:46.438: I/qtaguid(15542): Tagging socket 116 with tag 272f00000000(10031) for uid 825047349 failed errno=-1
08-04 14:31:46.448: I/qtaguid(15542): Failed write_ctrl(t 118 43082816946176 825047349) res=-1 errno=1
08-04 14:31:46.448: I/qtaguid(15542): Tagging socket 118 with tag 272f00000000(10031) for uid 825047349 failed errno=-1
08-04 14:31:46.448: I/qtaguid(15542): Failed write_ctrl(t 123 43082816946176 825047349) res=-1 errno=1
08-04 14:31:46.448: I/qtaguid(15542): Tagging socket 123 with tag 272f00000000(10031) for uid 825047349 failed errno=-1
08-04 14:31:56.458: I/qtaguid(15542): Failed write_ctrl(u 116) res=-1 errno=22
08-04 14:31:56.458: I/qtaguid(15542): Untagging socket 116 failed errno=-22
08-04 14:31:56.458: I/qtaguid(15542): Failed write_ctrl(u 118) res=-1 errno=22
08-04 14:31:56.458: I/qtaguid(15542): Untagging socket 118 failed errno=-22
08-04 14:31:56.458: I/qtaguid(15542): Failed write_ctrl(u 123) res=-1 errno=22
08-04 14:31:56.458: I/qtaguid(15542): Untagging socket 123 failed errno=-22
08-04 14:31:56.508: I/qtaguid(15542): Failed write_ctrl(t 116 43082816946176 771781733) res=-1 errno=1
08-04 14:31:56.508: I/qtaguid(15542): Tagging socket 116 with tag 272f00000000(10031) for uid 771781733 failed errno=-1
08-04 14:31:56.508: I/qtaguid(15542): Failed write_ctrl(t 118 43082816946176 771781733) res=-1 errno=1
08-04 14:31:56.508: I/qtaguid(15542): Tagging socket 118 with tag 272f00000000(10031) for uid 771781733 failed errno=-1
08-04 14:31:56.518: I/qtaguid(15542): Failed write_ctrl(t 123 43082816946176 771781733) res=-1 errno=1
08-04 14:31:56.518: I/qtaguid(15542): Tagging socket 123 with tag 272f00000000(10031) for uid 771781733 failed errno=-1

This happens in two project I've worked on. The older one was meant to get my feet wet with PhoneGap development. That project was very simple and had nothing advanced in it. Basically all it would do is POST to a website, and process the response. It was purely developed on the javascript side. It spams the same QTAGUID messages.

The projects are both jquery 1.7 / jquerymobile 1.1.1 and cordova. (Old project is cordova 1.6, new one is 1.9)

I've been researching this for a while now and haven't found any relevant information regarding it. Any insight would be appreciated! Thank you.

like image 915
Jeff Avatar asked Aug 04 '12 18:08

Jeff


1 Answers

This is a WiFi issue and enabling "Avoid poor connections" (Settings, Wireless, WiFi, menu Advanced) sometimes help. I had the same problem only using WiFi networks. You can also try this application WiFi Connection Fixer but as far as i know there is nothing you can do about it in your code.

like image 115
hkazemi Avatar answered Nov 19 '22 17:11

hkazemi