diff options
Diffstat (limited to 'shaping/include/shaper_aqm.h')
| -rw-r--r-- | shaping/include/shaper_aqm.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shaping/include/shaper_aqm.h b/shaping/include/shaper_aqm.h new file mode 100644 index 0000000..f7e0123 --- /dev/null +++ b/shaping/include/shaper_aqm.h @@ -0,0 +1,10 @@ +#pragma once + +enum shaper_aqm_action { + AQM_ACTION_PASS, + AQM_ACTION_DROP, +}; + +int shaper_aqm_enqueue(struct shaping_profile_info *profile); +int shaper_aqm_dequeue(); +int shaper_aqm_need_drop(struct shaping_profile_info *profile, struct shaping_packet_wrapper *pkt_wrapper);
\ No newline at end of file |
