I'm trying to monitor network activity on my iPhone from within an app I'm developing. Does iOS support a netstat-like command or something similar that can tell me what what inbound and outbound connections are active ?
After some searching I found Apple's code used for netstat.
Everything you need in the void protopr(uint32_t proto, char *name, int af)
function.
I tested on the device and sysctlbyname("net.inet.tcp.pcblist_n",...)
works.
That should be all you need.