-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show consumed traffic amount? #7
Comments
Right now it's definitely outside the scope of the project, but at some point I agree it would be nice to have that information in there somewhere. |
+1 |
1 similar comment
👍 |
:) |
I'm looking to implement similar functionality in a different project. Can you point me to resources regarding |
NetworkStatistics is completely undocumented, but I used Hopper Disassembler and a ton of trial and error to find the right framework and function calls that I needed. Hopper can give you the function definition to a point, but it will say things like |
Inspecting the disassembled code for each function usually gives hints for what the parameters are supposed to be, like For reverse-engineering data formats, you usually just use the app that generates the data to make known changes, then inspect the data in a hex editor and see what changed. If you change the rating for a song in iTunes from one star to two stars and one of the bytes in the file changes from 51 to 102, the rating is probably stored in that byte as rating * 51. |
It would be really lovely to see amount of traffic for each app, or is it out of scope for
Loading
?The text was updated successfully, but these errors were encountered: