#pragma once #include #include #include namespace ap { enum ERRORS { SUCESS, ERR_INIT, ERR_NO_DEV, ERR_ALLOC, ERR_GENERAL }; std::vector connectedDevices(const std::string& ifDevice, int& error); std::string macAddrToString(uint64_t macAddr); }