This repository was archived by the owner on Jun 24, 2020. It is now read-only.

Description
Last command in the installation script is:
sudo make install
This results in the execution of:
chmod +x iouyap
sudo cp iouyap /usr/local/bin
sudo setcap cap_net_admin,cap_net_raw=ep iouyap
Executing '/sbin/getcap $(which iouyap)' to verify capabilities yields nothing.
I believe that the command:
'sudo setcap cap_net_admin,cap_net_raw=ep iouyap'
needs to be run on the iouyap in /usr/local/bin ala perhaps:
'sudo setcap cap_net_admin,cap_net_raw=ep $(which iouyap)'
After I did that, my capabilities were set.
Thanks for all of your hard work, developers!