Skip to content

Commit

Permalink
ssl替换crypt
Browse files Browse the repository at this point in the history
  • Loading branch information
xiyoo0812 committed Apr 16, 2024
1 parent bd5309f commit b1c418c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/quanta/src/mainlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
extern "C" {
#endif

int luaopen_lssl(lua_State* L);
int luaopen_lbson(lua_State* L);
int luaopen_ljson(lua_State* L);
int luaopen_luapb(lua_State* L);
int luaopen_lualog(lua_State* L);
int luaopen_luabus(lua_State* L);
int luaopen_lcodec(lua_State* L);
int luaopen_lcrypt(lua_State* L);
int luaopen_lstdfs(lua_State* L);
int luaopen_ltimer(lua_State* L);
int luaopen_lsqlite(lua_State* L);
Expand All @@ -29,13 +29,13 @@ int luaopen_lworker(lua_State* L);
#define QUANTA_ARGS_NUM 2

static void luaL_open_worldlibs(lua_State* L) {
luaopen_lssl(L);
luaopen_lbson(L);
luaopen_ljson(L);
luaopen_luapb(L);
luaopen_lualog(L);
luaopen_luabus(L);
luaopen_lcodec(L);
luaopen_lcrypt(L);
luaopen_lstdfs(L);
luaopen_ltimer(L);
luaopen_lsqlite(L);
Expand Down

0 comments on commit b1c418c

Please sign in to comment.