bblog: improve TCP state names

Use the names from RFC 9293 for consistency.
This commit is contained in:
Michael Tuexen 2023-02-19 15:07:55 +01:00 committed by A Wireshark GitLab Utility
parent 602edb79b9
commit cd6fe39455
1 changed files with 7 additions and 7 deletions

View File

@ -19,15 +19,15 @@
static const value_string tcp_state_values[] = {
{ 0, "CLOSED" },
{ 1, "LISTEN" },
{ 2, "SYN SENT" },
{ 3, "SYN RECEIVED" },
{ 2, "SYN-SENT" },
{ 3, "SYN-RECEIVED" },
{ 4, "ESTABLISHED" },
{ 5, "CLOSE WAIT" },
{ 6, "FIN WAIT 1" },
{ 5, "CLOSE-WAIT" },
{ 6, "FIN-WAIT-1" },
{ 7, "CLOSING" },
{ 8, "LAST ACK" },
{ 9, "FIN WAIT 2" },
{ 10, "TIME WAIT" },
{ 8, "LAST-ACK" },
{ 9, "FIN-WAIT-2" },
{ 10, "TIME-WAIT" },
{ 0, NULL } };
/*