This commit is contained in:
Chris M 2014-07-03 04:15:00 -05:00
parent 90f74d6847
commit 7ec0994433
2 changed files with 3 additions and 5 deletions

View File

@ -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")

View File

@ -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() {