This commit is contained in:
yunwei37
2023-05-30 10:56:04 +00:00
parent bc1908ac9e
commit 4fa77d68db
17 changed files with 185 additions and 514 deletions

13
14-tcpstates/tcprtt.h Normal file
View File

@@ -0,0 +1,13 @@
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
#ifndef __TCPRTT_H
#define __TCPRTT_H
#define MAX_SLOTS 27
struct hist {
unsigned long long latency;
unsigned long long cnt;
unsigned int slots[MAX_SLOTS];
};
#endif /* __TCPRTT_H */