#include "../Ethernet.h" #include // Not yet implemented on Android. A real port would use the hidden/system // android.net.EthernetManager API — no NetworkManager equivalent exists. namespace vesperos::profile::platform::ethernet { bool apply(const ParsedPayload& p) { syslog(LOG_WARNING, "[ethernet] not implemented on Android yet, uuid=%s", p.uuid.c_str()); return false; } void revert(const ParsedPayload& p) { syslog(LOG_WARNING, "[ethernet] not implemented on Android yet, uuid=%s", p.uuid.c_str()); } } // namespace vesperos::profile::platform::ethernet