123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef CLI_PARAMETERS_H_
- #define CLI_PARAMETERS_H_
- void snmp_config_param(int8_t *buf);
- #ifdef DINS_ENABLE || DOUTS_ENABLE
- void inouts_config_param(int8_t *buf);
- #endif
- void net_config_param(int8_t *buf);
- void time_config_param(int8_t *buf);
- #ifdef SYSLOG_ENABLE
- void syslog_config_param(int8_t *buf);
- #endif
- #ifdef RADIUS_SERVER_ENABLE
- void radius_config_param(int8_t *buf);
- #endif
- #ifdef PORTGW_ENABLE
- void pgw_config_param(int8_t *buf);
- #endif
- void akb_config_param(int8_t *buf);
- void alarm_config_param(int8_t *buf);
- void alarm_config_param(int8_t *buf);
- #ifdef NOTIFICATION_CONTROL_ENABLE
- void notification_param(int8_t *buf);
- #endif
- #ifdef WHITELIST_ENABLE
- void whitelist_config_param(int8_t *buf);
- #endif
- void ups_sensor_param(int8_t *buf);
- void ups_sensor_akb_param(int8_t *buf);
- #ifdef DINS_ENABLE || DOUTS_ENABLE
- void inouts_sensor_param(int8_t *buf);
- #endif
- #endif
|