Skip to content

Commit 2f9efd1

Browse files
author
Tomasz Bursztyka
committed
net: statistics: Fix comment length issue
Some were > 80 chars. Change-Id: Ie7175c973b4e1ee4039380b0a233d88a60e6df4a Signed-off-by: Tomasz Bursztyka <[email protected]>
1 parent e3cca46 commit 2f9efd1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

include/net/net_stats.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ struct net_stats_ip {
5454
};
5555

5656
struct net_stats_ip_errors {
57-
/** Number of packets dropped due to wrong IP version or header length. */
57+
/** Number of packets dropped due to wrong IP version
58+
* or header length.
59+
*/
5860
net_stats_t vhlerr;
5961

6062
/** Number of packets dropped due to wrong IP length, high byte. */
@@ -69,7 +71,9 @@ struct net_stats_ip_errors {
6971
/** Number of packets dropped due to IP checksum errors. */
7072
net_stats_t chkerr;
7173

72-
/** Number of packets dropped because they were neither ICMP, UDP nor TCP. */
74+
/** Number of packets dropped because they were neither ICMP,
75+
* UDP nor TCP.
76+
*/
7377
net_stats_t protoerr;
7478
};
7579

@@ -112,7 +116,9 @@ struct net_stats_tcp {
112116
/** Number of retransmitted TCP segments. */
113117
net_stats_t rexmit;
114118

115-
/** Number of dropped SYNs because too few connections were available. */
119+
/** Number of dropped SYNs because too few connections were
120+
* available.
121+
*/
116122
net_stats_t syndrop;
117123

118124
/** Number of SYNs for closed ports, triggering a RST. */

0 commit comments

Comments
 (0)