mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2025-10-05 14:10:05 +00:00
13 lines
197 B
C++
13 lines
197 B
C++
#pragma once
|
|
|
|
#include "CNProtocol.hpp"
|
|
|
|
#include <list>
|
|
#include <mutex>
|
|
|
|
namespace Monitor {
|
|
SOCKET init();
|
|
void tick(CNServer *, time_t);
|
|
bool acceptConnection(SOCKET, uint16_t);
|
|
};
|