summaryrefslogtreecommitdiff
path: root/shaping/include/shaper_aqm.h
blob: f7e01233f732ee1da77a2224d2e0185ee1347af4 (plain)
1
2
3
4
5
6
7
8
9
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);