OpenVAS Libraries
7.0.6
|
#include <kb.h>
Data Fields | |
char * | name |
char | type |
union { | |
char * v_str | |
int v_int | |
} | v |
struct kb_item * | next |
Knowledge base item (defined by name, type (int/char*) and value). Implemented as a singly linked list
char* kb_item::name |
Name of this knowledge base item.
struct kb_item* kb_item::next |
Next item in list.
char kb_item::type |
One of KB_TYPE_INT or KB_TYPE_STR.
union { ... } kb_item::v |
Value of this knowledge base item.
int kb_item::v_int |
char* kb_item::v_str |