Initial TCP server

This commit is contained in:
2025-06-05 01:44:58 -04:00
parent 6abf6be32d
commit e87abf9eef
18 changed files with 373 additions and 90 deletions

View File

@@ -5,9 +5,12 @@
#ifndef DISCOVERYSERVICE_H
#define DISCOVERYSERVICE_H
class mDNSDiscoveryService {
class mDNSDiscoveryService final {
public:
mDNSDiscoveryService();
mDNSDiscoveryService() = delete;
~mDNSDiscoveryService() = delete;
static void setup();
};
#endif //DISCOVERYSERVICE_H