Dear [email protected] : I don't find the define of naslparse() , please help me, very thanks !!! preparse.c Go to the documentation of this file. 00020 #include "nasl_tree.h" 00021 #include "nasl_global_ctxt.h" 00022 #include "nasl_func.h" 00023 #include "nasl_var.h" 00024 #include "nasl_lex_ctxt.h" 00025 #include "exec.h" 00026 #include "nasl_regex.h" 00027 #include "nasl_debug.h" 00028 00029 extern int naslparse (naslctxt *); 00030 00039 int 00040 nasl_reload_or_parse (naslctxt * ctx, const char *name) 00041 { 00042 if (init_nasl_ctx (ctx, name) < 0) 00043 return -1; 00044 00045 if (naslparse (ctx)) 00046 { 00047 fprintf (stderr, "\nParse error at or near line %d\n", ctx->line_nb); 00048 nasl_clean_ctx (ctx); 00049 return -1; 00050 } 00051 00052 return 0; 00053 }
2010-09-26 wangzhiwen
_______________________________________________ Openvas-plugins mailing list [email protected] http://lists.wald.intevation.org/mailman/listinfo/openvas-plugins
