Skip to content

Commit

Permalink
Fix linux build.
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsracz committed Aug 20, 2022
1 parent 9af22c0 commit 23ec472
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/os/MDNS.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,11 @@ void MDNS::publish(const char *name, const char *service, uint16_t port)
*/
void MDNS::unpublish(const char *name, const char *service)
{
#if defined(__linux__)
DIE("unimplemented");
#else
mdns_unpublish(name, service);
#endif
}

/*
Expand Down

0 comments on commit 23ec472

Please sign in to comment.