Fix tcp state names to be like others.
authorManuel Luis Sanmartín Rozada <manuel.luis@gmail.com>
Sat, 8 Feb 2014 21:42:21 +0000 (22:42 +0100)
committerManuel Luis Sanmartín Rozada <manuel.luis@gmail.com>
Sat, 8 Feb 2014 21:42:21 +0000 (22:42 +0100)
src/tcpconns.c

index 765b892..890e07f 100644 (file)
@@ -215,13 +215,13 @@ static const char *tcp_state[] =
   "CLOSED",
   "LISTEN",
   "SYN_SENT",
-  "SYN_RCVD",
+  "SYN_RECV",
   "ESTABLISHED",
   "CLOSE_WAIT",
-  "FIN_WAIT_1",
+  "FIN_WAIT1",
   "CLOSING",
   "LAST_ACK",
-  "FIN_WAIT_2",
+  "FIN_WAIT2",
   "TIME_WAIT"
 };