00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _PERMISSIONS_MI_H_
00026 #define _PERMISSIONS_MI_H_
00027
00028
00029 #include "../../lib/kmi/mi.h"
00030
00031
00032 #define MI_TRUSTED_RELOAD "trusted_reload"
00033 #define MI_TRUSTED_DUMP "trusted_dump"
00034
00035 #define MI_ADDRESS_RELOAD "address_reload"
00036 #define MI_ADDRESS_DUMP "address_dump"
00037 #define MI_SUBNET_DUMP "subnet_dump"
00038
00039 #define MI_ALLOW_URI "allow_uri"
00040
00041 struct mi_root* mi_trusted_reload(struct mi_root *cmd, void *param);
00042
00043 struct mi_root* mi_trusted_dump(struct mi_root *cmd, void *param);
00044
00045 struct mi_root* mi_address_reload(struct mi_root *cmd, void *param);
00046
00047 struct mi_root* mi_address_dump(struct mi_root *cmd, void *param);
00048
00049 struct mi_root* mi_subnet_dump(struct mi_root *cmd_tree, void *param);
00050
00051 struct mi_root* mi_allow_uri(struct mi_root *cmd, void *param);
00052
00053 #endif