Skip to content

Commit

Permalink
重构mysql组件
Browse files Browse the repository at this point in the history
  • Loading branch information
xiyoo0812 committed Sep 19, 2023
1 parent bd92db9 commit bc280af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/luabus/src/lua_socket_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "lua_socket_node.h"

lua_socket_node::lua_socket_node(uint32_t token, lua_State* L, stdsptr<socket_mgr> mgr, stdsptr<socket_router> router, eproto_type type)
: m_token(token), m_mgr(mgr), m_router(router), m_type(type) {
: m_token(token), m_type(type), m_mgr(mgr), m_router(router) {
m_stoken = (m_token & 0xffff) << 16;
m_lvm = std::make_shared<kit_state>(L);
m_mgr->get_remote_ip(m_token, m_ip);
Expand Down

0 comments on commit bc280af

Please sign in to comment.