Add Qos module

This commit is contained in:
dijunkun
2023-08-24 14:22:07 +08:00
parent 1c0d80fa3a
commit dc84a0becf
5 changed files with 37 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
#include "congestion_control.h"
CongestionControl::CongestionControl() {}
CongestionControl::~CongestionControl() {}

View File

@@ -0,0 +1,12 @@
#ifndef _CONGESTION_CONTROL_H_
#define _CONGESTION_CONTROL_H_
class CongestionControl {
public:
CongestionControl();
~CongestionControl();
private:
};
#endif