/* LLMNR MODULE Copyright (C) 2017-2019 by Xose Pérez */ #include "espurna.h" #if LLMNR_SUPPORT #include #include "llmnr.h" void llmnrSetup() { const auto hostname = systemHostname(); LLMNR.begin(hostname.c_str()); DEBUG_MSG_P(PSTR("[LLMNR] Configured for %s\n"), hostname.c_str()); } #endif // LLMNR_SUPPORT