mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 04:57:06 +03:00
19 lines
414 B
C++
19 lines
414 B
C++
#ifndef BELLL_MDNS_SERVICE_H
|
|
#define BELLL_MDNS_SERVICE_H
|
|
#include <string>
|
|
#include <map>
|
|
|
|
class MDNSService {
|
|
public:
|
|
static void registerService(
|
|
const std::string &serviceName,
|
|
const std::string &serviceType,
|
|
const std::string &serviceProto,
|
|
const std::string &serviceHost,
|
|
int servicePort,
|
|
const std::map<std::string, std::string> txtData
|
|
);
|
|
};
|
|
|
|
#endif
|