mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2026-02-08 13:30:04 +00:00
14 lines
305 B
C++
14 lines
305 B
C++
#pragma once
|
|
|
|
#include "core/Core.hpp"
|
|
|
|
namespace Monitor {
|
|
extern std::vector<std::string> chats;
|
|
extern std::vector<std::string> bcasts;
|
|
extern std::vector<std::string> emails;
|
|
extern std::vector<std::string> namereqs;
|
|
|
|
SOCKET init();
|
|
bool acceptConnection(SOCKET, uint16_t);
|
|
};
|