mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-24 21:31:28 +00:00
Cleanup
This commit is contained in:
parent
90f74d6847
commit
7ec0994433
@ -299,10 +299,8 @@ IF(EQEMU_BUILD_LUA)
|
||||
ENDIF(EQEMU_BUILD_LUA)
|
||||
|
||||
IF(EQEMU_BUILD_SOCKET_SERVER)
|
||||
FIND_PACKAGE(Boost COMPONENTS system filesystem thread REQUIRED)
|
||||
INCLUDE_DIRECTORIES("${CMAKE_CURRENT_SOURCE_DIR}/dependencies/websocketpp")
|
||||
ADD_DEFINITIONS(-D_WEBSOCKETPP_CPP11_STL_)
|
||||
|
||||
ENDIF(EQEMU_BUILD_SOCKET_SERVER)
|
||||
|
||||
INCLUDE_DIRECTORIES("${ZLIB_INCLUDE_DIRS}" "${MySQL_INCLUDE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/common/glm/glm")
|
||||
|
||||
@ -64,7 +64,7 @@ void CatchSignal(int sig_num) {
|
||||
worldserver->Disconnect();
|
||||
}
|
||||
|
||||
/* Web Sockets Start Shit */
|
||||
/* Web Sockets Start */
|
||||
|
||||
enum action_type {
|
||||
SUBSCRIBE,
|
||||
@ -135,7 +135,7 @@ public:
|
||||
void on_message(connection_hdl hdl, server::message_ptr msg) {
|
||||
// queue message up for sending by processing thread
|
||||
unique_lock<mutex> lock(m_action_lock);
|
||||
msg->set_payload("Niggers");
|
||||
msg->set_payload("Test Message");
|
||||
// std::cout << "on_message" << std::endl;
|
||||
m_actions.push(action(MESSAGE, hdl, msg));
|
||||
lock.unlock();
|
||||
@ -188,7 +188,7 @@ private:
|
||||
condition_variable m_action_cond;
|
||||
};
|
||||
|
||||
/* Web Sockets Shit End*/
|
||||
/* Web Sockets Shit */
|
||||
|
||||
int main() {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user