127 lines
2.3 KiB
C
127 lines
2.3 KiB
C
#include <string.h>
|
|
#include "lua.h"
|
|
#include "longzoro/version.h"
|
|
#include "lauxlib.h"
|
|
#include "lualib.h"
|
|
#include "net.h"
|
|
#include "log.h"
|
|
|
|
#ifdef _ALLBLUES_LUA
|
|
|
|
static int endOne(lua_State *L)
|
|
{
|
|
const int sockfd = luaL_checkint(L, 1);
|
|
#ifdef _NETLOG_
|
|
char cdkey[16];
|
|
char charname[32];
|
|
CONNECT_getCharname(sockfd,charname,32);
|
|
CONNECT_getCdkey(sockfd,cdkey,16);
|
|
LogCharOut(charname,cdkey,__FILE__,__FUNCTION__,__LINE__,"ABLUAÌßÏÂÏß");
|
|
#endif
|
|
CONNECT_endOne_debug(sockfd);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int userip(lua_State *L)
|
|
{
|
|
int charaindex = luaL_checkint(L, 1);
|
|
|
|
int sockfd = getfdFromCharaIndex(charaindex);
|
|
|
|
unsigned long ip;
|
|
int a,b,c,d;
|
|
char strIP[32];
|
|
ip = CONNECT_get_userip(sockfd);
|
|
|
|
a=(ip % 0x100); ip=ip / 0x100;
|
|
b=(ip % 0x100); ip=ip / 0x100;
|
|
c=(ip % 0x100); ip=ip / 0x100;
|
|
d=(ip % 0x100);
|
|
|
|
sprintf(strIP, "%d.%d.%d.%d", a, b, c, d);
|
|
|
|
lua_pushstring(L, strIP);
|
|
return 1;
|
|
}
|
|
#ifdef _NEWCLISETSERVID
|
|
static int getServid(lua_State *L)
|
|
{
|
|
int charaindex = luaL_checkint(L, 1);
|
|
|
|
int sockfd = getfdFromCharaIndex(charaindex);
|
|
|
|
lua_pushinteger(L, CONNECT_getServid(sockfd));
|
|
return 1;
|
|
}
|
|
#endif
|
|
#ifdef _NEWCLISETMAC
|
|
static int getMac(lua_State *L)
|
|
{
|
|
int sockfd = luaL_checkint(L, 1);
|
|
|
|
char mac[128];
|
|
CONNECT_getMAC( sockfd, mac, sizeof( mac ));
|
|
|
|
lua_pushstring(L, mac);
|
|
return 1;
|
|
}
|
|
#endif
|
|
|
|
static int getIP(lua_State *L)
|
|
{
|
|
int sockfd = luaL_checkint(L, 1);
|
|
unsigned long ip;
|
|
int a,b,c,d;
|
|
char strIP[32];
|
|
|
|
ip = CONNECT_get_userip(sockfd);
|
|
|
|
a=(ip % 0x100); ip=ip / 0x100;
|
|
b=(ip % 0x100); ip=ip / 0x100;
|
|
c=(ip % 0x100); ip=ip / 0x100;
|
|
d=(ip % 0x100);
|
|
|
|
sprintf(strIP, "%d.%d.%d.%d", a, b, c, d);
|
|
|
|
lua_pushstring(L, strIP);
|
|
return 1;
|
|
}
|
|
|
|
static int getUse(lua_State *L)
|
|
{
|
|
int fd = luaL_checkint(L, 1);
|
|
|
|
lua_pushinteger(L, CONNECT_getUse(fd));
|
|
return 1;
|
|
}
|
|
static int getCharaindex(lua_State *L)
|
|
{
|
|
int fd = luaL_checkint(L, 1);
|
|
|
|
lua_pushinteger(L, CONNECT_getCharaindex(fd));
|
|
return 1;
|
|
}
|
|
static const luaL_Reg netlib[] = {
|
|
{"endOne", endOne},
|
|
{"userip", userip},
|
|
#ifdef _NEWCLISETSERVID
|
|
{"getServid", getServid},
|
|
#endif
|
|
#ifdef _NEWCLISETMAC
|
|
{"getMac", getMac},
|
|
#endif
|
|
{"getIP", getIP},
|
|
{"getUse", getUse},
|
|
{"getCharaindex", getCharaindex},
|
|
{NULL, NULL}
|
|
};
|
|
|
|
|
|
LUALIB_API int luaopen_Net (lua_State *L) {
|
|
luaL_register(L, "net", netlib);
|
|
return 1;
|
|
}
|
|
|
|
#endif
|