lint.c
来自「大国补丁后的nessus2.2.8的源代码」· C语言 代码 · 共 70 行
C
70 行
/* Nessus Attack Scripting Language "lint" * * Copyright (C) 2004 Michel Arboi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2, * as published by the Free Software Foundation * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */#include <includes.h>#include "nasl_regex.h"#include "nasl.h"#include "nasl_tree.h"#include "nasl_global_ctxt.h"#include "nasl_func.h"#include "nasl_var.h"#include "nasl_lex_ctxt.h"#include "exec.h"#include "preparse.h"#include "nasl_server.h"#include "nasl_debug.h"#include "strutils.h"#include "nasl_init.h"#ifndef NASL_DEBUG#define NASL_DEBUG 0#endiftree_cell*nasl_lint(lex_ctxt* lexic, tree_cell* st){ int i; tree_cell *ret = FAKE_CELL; nasl_func *pf; switch (st->type) { case NODE_FUN_DEF: /* x.str_val = function name, [0] = argdecl, [1] = block */ ret = decl_nasl_func(lexic, st); return ret; case NODE_FUN_CALL: pf = get_func_ref_by_name(lexic, st->x.str_val); if (pf == NULL) { nasl_perror(lexic, "Undefined function '%s'\n", st->x.str_val); return NULL; } default: for (i = 0; i < 4; i ++) if (st->link[i] != NULL && st->link[i] != FAKE_CELL) if ((ret = nasl_lint(lexic, st->link[i])) == NULL) return NULL; return ret; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?