mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-03-31 17:21:12 +08:00
Deploying to gh-pages from @ eunomia-bpf/bpf-developer-tutorial@d962bc4781 🚀
This commit is contained in:
13
14-tcpstates/tcprtt.h
Normal file
13
14-tcpstates/tcprtt.h
Normal 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 */
|
||||
Reference in New Issue
Block a user