1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2 #ifndef __TCPRTT_H 3 #define __TCPRTT_H 4 5 #define MAX_SLOTS 27 6 7 struct hist { 8 __u64 latency; 9 __u64 cnt; 10 __u32 slots[MAX_SLOTS]; 11 }; 12 13 #endif /* __TCPRTT_H */ 14