copy crypt to client.crypt, see #655

This commit is contained in:
Cloud Wu
2017-06-06 13:54:43 +08:00
parent 4e54a27500
commit 1328895ff9
7 changed files with 13 additions and 8 deletions

View File

@@ -933,3 +933,8 @@ luaopen_skynet_crypt(lua_State *L) {
luaL_newlib(L,l);
return 1;
}
LUAMOD_API int
luaopen_client_crypt(lua_State *L) {
return luaopen_skynet_crypt(L);
}