chore(net): restructure system-specific socket code

This commit is contained in:
fallenoak 2023-03-20 17:57:41 -05:00 committed by GitHub
parent da23578002
commit b537c34990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 9 deletions

View file

@ -1,5 +1,3 @@
#if defined(WHOA_SYSTEM_MAC) || defined(WHOA_SYSTEM_LINUX)
#include "net/connection/WowConnectionNet.hpp"
#include "net/connection/WowConnection.hpp"
#include <algorithm>
@ -187,5 +185,3 @@ void WowConnectionNet::PlatformWorkerReady() {
char buf = '\1';
write(s_workerPipe[1], &buf, sizeof(buf));
}
#endif

View file

@ -1,5 +1,3 @@
#if defined(WHOA_SYSTEM_WIN)
#include "net/connection/WowConnectionNet.hpp"
void WowConnectionNet::PlatformAdd(WowConnection* connection) {
@ -25,5 +23,3 @@ void WowConnectionNet::PlatformRun() {
void WowConnectionNet::PlatformWorkerReady() {
// TODO
}
#endif