#include <shared.h>
Collaboration diagram for s_procedure:
Definition at line 950 of file shared.h.
Public Member Functions | |
s_procedure () | |
Public Attributes | |
list< s_command > | commands |
Commands of procedure. | |
vector< s_group > | groups |
List of groups that procedure is member of. | |
time_t | last_changed |
Time of last change. | |
int | minimal_botnet_version |
Number of minimal BOTNET protocol version (for replication). | |
string | name |
Declaration string of procedure. | |
vector< s_replication > | replication |
Informations of replication. | |
vector< s_rproc > | rproc |
List of bot which can call this procedure remotely (BOTNET). |
|
Definition at line 961 of file shared.h. References commands, groups, last_changed, minimal_botnet_version, name, replication, and rproc. 00962 { 00963 name=""; 00964 commands.clear(); 00965 groups.clear(); 00966 replication.clear(); 00967 last_changed=0; 00968 minimal_botnet_version=1; 00969 rproc.clear(); 00970 }
|
|
Commands of procedure.
Definition at line 952 of file shared.h. Referenced by logic_exec(), logic_parse_proc(), logic_process_line(), and s_procedure(). |
|
List of groups that procedure is member of.
Definition at line 953 of file shared.h. Referenced by logic_parse_proc(), logic_process_line(), and s_procedure(). |
|
Time of last change.
Definition at line 957 of file shared.h. Referenced by botnet_loop(), botnet_push_proc(), logic_parse_proc(), logic_process_line(), and s_procedure(). |
|
Number of minimal BOTNET protocol version (for replication).
Definition at line 959 of file shared.h. Referenced by logic_process_line(), and s_procedure(). |
|
Declaration string of procedure.
Definition at line 951 of file shared.h. Referenced by botnet_loop(), botnet_push_proc(), logic_exec(), logic_process_line(), and s_procedure(). |
|
Informations of replication.
Definition at line 956 of file shared.h. Referenced by botnet_loop(), logic_process_line(), and s_procedure(). |
|
List of bot which can call this procedure remotely (BOTNET).
Definition at line 954 of file shared.h. Referenced by logic_process_line(), and s_procedure(). |