mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
19 lines
524 B
C++
19 lines
524 B
C++
#pragma once
|
|
|
|
#include <map> // for map
|
|
#include <memory> // for unique_ptr
|
|
#include <string> // for string
|
|
|
|
namespace bell {
|
|
|
|
class MDNSService {
|
|
public:
|
|
virtual ~MDNSService() {}
|
|
static std::unique_ptr<MDNSService> 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);
|
|
virtual void unregisterService() = 0;
|
|
};
|
|
|
|
} // namespace bell
|