SCRIPT namespace replacements

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:05 -05:00
committed by Peter Johnson
parent ae6c043632
commit 9aca8e0fd6
2622 changed files with 22275 additions and 22275 deletions

View File

@@ -19,7 +19,7 @@
#include "wpi/util/Synchronization.h"
#include "wpi/util/mutex.hpp"
namespace wpi {
namespace wpi::net {
class ResolverThread {
private:
struct private_init {};
@@ -38,12 +38,12 @@ class ResolverThread {
void ThreadMain();
bool CleanupRefs();
wpi::mutex serviceRefMutex;
wpi::util::mutex serviceRefMutex;
std::vector<std::pair<DNSServiceRef, WPI_EventHandle>> serviceRefsToRemove;
std::vector<std::pair<DNSServiceRef, dnssd_sock_t>> serviceRefs;
std::thread thread;
std::atomic_bool running;
};
} // namespace wpi
} // namespace wpi::net
#endif // defined(__APPLE__)