diff options
author | Kacheong Poon <Kacheong.Poon@Sun.COM> | 2010-07-19 17:27:45 -0700 |
---|---|---|
committer | Kacheong Poon <Kacheong.Poon@Sun.COM> | 2010-07-19 17:27:45 -0700 |
commit | 5dd46ab5742d7db1cbb08dec7b64fa14930c02f7 (patch) | |
tree | 290ef9de55b79f9edcc6e99d8c023e66a7658133 /usr/src/uts/common/inet/tcp_stack.h | |
parent | 516aa12c0e0be4dde28b9fc2b3d928230a8e4c42 (diff) | |
download | illumos-gate-5dd46ab5742d7db1cbb08dec7b64fa14930c02f7.tar.gz |
6910078 SCTP should have similar memory handling mechanism as TCP
Diffstat (limited to 'usr/src/uts/common/inet/tcp_stack.h')
-rw-r--r-- | usr/src/uts/common/inet/tcp_stack.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/uts/common/inet/tcp_stack.h b/usr/src/uts/common/inet/tcp_stack.h index 5cff22c5f0..2dccf6b78c 100644 --- a/usr/src/uts/common/inet/tcp_stack.h +++ b/usr/src/uts/common/inet/tcp_stack.h @@ -20,8 +20,7 @@ */ /* - * Copyright 2010 Sun Microsystems, Inc. All rights reserved. - * Use is subject to license terms. + * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. */ #ifndef _INET_TCP_STACK_H @@ -77,8 +76,8 @@ struct tcp_stack { * MIB-2 stuff for SNMP * Note: tcpInErrs {tcp 15} is accumulated in ip.c */ - kstat_t *tcps_mibkp; /* kstat exporting tcp_mib data */ - kstat_t *tcps_kstat; + kstat_t *tcps_mibkp; /* kstat exporting mib2_tcp_t data */ + kstat_t *tcps_kstat; /* kstat exporting tcp_stat_t data */ uint32_t tcps_iss_incr_extra; /* Incremented for each connection */ |