struct cdnrinfo {
int tce_type;
union {
struct {
struct tc_action action;
} element;
struct {
struct tb_profile profile;
struct tc_action in_action;
struct tc_action out_action;
} tbmeter;
struct {
struct tb_profile cmtd_profile;
struct tb_profile peak_profile;
struct tc_action green_action;
struct tc_action yellow_action;
struct tc_action red_action;
int coloraware;
} trtcm;
struct {
u_int32_t cmtd_rate;
u_int32_t peak_rate;
u_int32_t avg_interval;
struct tc_action green_action;
struct tc_action yellow_action;
struct tc_action red_action;
} tswtcm;
} tce_un;
};
u_long cdnr_name2handle(const char *ifname, const char *cdnr_name);
int qcmd_cdnr_add_element(struct tc_action *rp, const char *ifname,
const char *cdnr_name, struct tc_action *action);
int qcmd_cdnr_add_tbmeter(struct tc_action *rp, const char *ifname,
const char *cdnr_name,
struct tb_profile *profile,
struct tc_action *in_action,
struct tc_action *out_action);
int qcmd_cdnr_add_trtcm(struct tc_action *rp, const char *ifname,
const char *cdnr_name,
struct tb_profile *cmtd_profile,
struct tb_profile *peak_profile,
struct tc_action *green_action,
struct tc_action *yellow_action,
struct tc_action *red_action, int coloraware);
int qcmd_cdnr_add_tswtcm(struct tc_action *rp, const char *ifname,
const char *cdnr_name, const u_int32_t cmtd_rate,
const u_int32_t peak_rate,
const u_int32_t avg_interval,
struct tc_action *green_action,
struct tc_action *yellow_action,
struct tc_action *red_action);
int qcmd_cdnr_delete(const char *ifname, const char *cdnr_name);
int qcmd_nop_add_if(const char *ifname);
int qop_add_cdnr(struct classinfo **rp, const char *cdnr_name,
struct ifinfo *ifinfo, struct classinfo **childlist,
void *cdnr_private);
int qop_delete_cdnr(struct classinfo *clinfo);
int qop_cdnr_add_element(struct classinfo **rp, const char *cdnr_name,
struct ifinfo *ifinfo, struct tc_action *action);
int qop_cdnr_add_tbmeter(struct classinfo **rp, const char *cdnr_name,
struct ifinfo *ifinfo, struct tb_profile *profile,
struct tc_action *in_action, struct tc_action *out_action);
int qop_cdnr_add_trtcm(struct classinfo **rp, const char *cdnr_name,
struct ifinfo *ifinfo,
struct tb_profile *cmtd_profile, struct tb_profile *peak_profile,
struct tc_action *green_action, struct tc_action *yellow_action,
struct tc_action *red_action, int colorware);
int qop_cdnr_add_tswtcm(struct classinfo **rp, const char *cdnr_name,
struct ifinfo *ifinfo, const u_int32_t cmtd_rate,
const u_int32_t peak_rate,
const u_int32_t avg_interval,
struct tc_action *green_action,
struct tc_action *yellow_action,
struct tc_action *red_action);
int qop_cdnr_modify_tbmeter(struct classinfo *clinfo,
struct tb_profile *profile);
int qop_cdnr_modify_trtcm(struct classinfo *clinfo,
struct tb_profile *cmtd_profile,
struct tb_profile *peak_profile, int coloraware);
int qop_cdnr_modify_tswtcm(struct classinfo *clinfo,
const u_int32_t cmtd_rate,
const u_int32_t peak_rate,
const u_int32_t avg_interval);