1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-30 03:19:02 +00:00

Add NSE debugging functions I used while working on the persistent NSE registry.

This commit is contained in:
david
2008-11-19 02:11:52 +00:00
parent bb8be37ece
commit 801c267f2b
2 changed files with 88 additions and 27 deletions

View File

@@ -2,12 +2,14 @@
#define NSE_DEBUG
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
void value_dump(lua_State *L, int i, int depth_limit);
void stack_dump(lua_State *L);
void lua_state_dump(lua_State *L);
#endif