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