diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-28 14:51:47 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2003-03-28 14:51:47 +0000 |
commit | ecad0bb8beb3f0ad67ce57eb9016140e4e488028 (patch) | |
tree | 7ada3b9a9cadd5bbce8c6a37a75f30307b87ac72 /sys/netinet/tcp_fsm.h | |
parent | 3220aaa7281ae7acdef27343448215ff5caa135f (diff) |
const char *
from David Hill <david at phobia.ms>
Diffstat (limited to 'sys/netinet/tcp_fsm.h')
-rw-r--r-- | sys/netinet/tcp_fsm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_fsm.h b/sys/netinet/tcp_fsm.h index d35259400dd..9cd0197587f 100644 --- a/sys/netinet/tcp_fsm.h +++ b/sys/netinet/tcp_fsm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_fsm.h,v 1.5 2001/06/09 07:03:43 angelos Exp $ */ +/* $OpenBSD: tcp_fsm.h,v 1.6 2003/03/28 14:51:46 henning Exp $ */ /* $NetBSD: tcp_fsm.h,v 1.6 1994/10/14 16:01:48 mycroft Exp $ */ /* @@ -84,7 +84,7 @@ int tcp_acounts[TCP_NSTATES][PRU_NREQ]; #endif /* KPROF */ #ifdef TCPSTATES -char *tcpstates[] = { +const char *tcpstates[] = { "CLOSED", "LISTEN", "SYN_SENT", "SYN_RCVD", "ESTABLISHED", "CLOSE_WAIT", "FIN_WAIT_1", "CLOSING", "LAST_ACK", "FIN_WAIT_2", "TIME_WAIT", |