I have a use-case where I need to run a simple HTTP server on iOS listening on port 80.
On the device that works fine however on the simulator I get a bind error that port 80 is privileged. This is not critical but makes testing more complicated than needed.
On linux it seems possible to give individual apps access to privileged ports via "setcap 'cap_net_bind_service=+ep' /path/to/program".
How would this work on OSX so that the iPhone Simulator could bind to a privileged port?