-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 327812 b: refs/heads/master c: d23ff70 h: refs/heads/master v: v3
- Loading branch information
Julian Anastasov
authored and
David S. Miller
committed
Sep 5, 2012
1 parent
8effb8f
commit ab7df54
Showing
4 changed files
with
397 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ab868256f8d6095e7200d928fcc054b66d0f13a3 | ||
refs/heads/master: d23ff701643a4a725e2c7a8ba2d567d39daa29ea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* tcp_metrics.h - TCP Metrics Interface */ | ||
|
||
#ifndef _LINUX_TCP_METRICS_H | ||
#define _LINUX_TCP_METRICS_H | ||
|
||
#include <linux/types.h> | ||
|
||
/* NETLINK_GENERIC related info | ||
*/ | ||
#define TCP_METRICS_GENL_NAME "tcp_metrics" | ||
#define TCP_METRICS_GENL_VERSION 0x1 | ||
|
||
enum tcp_metric_index { | ||
TCP_METRIC_RTT, | ||
TCP_METRIC_RTTVAR, | ||
TCP_METRIC_SSTHRESH, | ||
TCP_METRIC_CWND, | ||
TCP_METRIC_REORDERING, | ||
|
||
/* Always last. */ | ||
__TCP_METRIC_MAX, | ||
}; | ||
|
||
#define TCP_METRIC_MAX (__TCP_METRIC_MAX - 1) | ||
|
||
enum { | ||
TCP_METRICS_ATTR_UNSPEC, | ||
TCP_METRICS_ATTR_ADDR_IPV4, /* u32 */ | ||
TCP_METRICS_ATTR_ADDR_IPV6, /* binary */ | ||
TCP_METRICS_ATTR_AGE, /* msecs */ | ||
TCP_METRICS_ATTR_TW_TSVAL, /* u32, raw, rcv tsval */ | ||
TCP_METRICS_ATTR_TW_TS_STAMP, /* s32, sec age */ | ||
TCP_METRICS_ATTR_VALS, /* nested +1, u32 */ | ||
TCP_METRICS_ATTR_FOPEN_MSS, /* u16 */ | ||
TCP_METRICS_ATTR_FOPEN_SYN_DROPS, /* u16, count of drops */ | ||
TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS, /* msecs age */ | ||
TCP_METRICS_ATTR_FOPEN_COOKIE, /* binary */ | ||
|
||
__TCP_METRICS_ATTR_MAX, | ||
}; | ||
|
||
#define TCP_METRICS_ATTR_MAX (__TCP_METRICS_ATTR_MAX - 1) | ||
|
||
enum { | ||
TCP_METRICS_CMD_UNSPEC, | ||
TCP_METRICS_CMD_GET, | ||
TCP_METRICS_CMD_DEL, | ||
|
||
__TCP_METRICS_CMD_MAX, | ||
}; | ||
|
||
#define TCP_METRICS_CMD_MAX (__TCP_METRICS_CMD_MAX - 1) | ||
|
||
#endif /* _LINUX_TCP_METRICS_H */ |
Oops, something went wrong.