Date: Tue, 10 Apr 2018 17:00:37 +0000 (UTC) From: "Jonathan T. Looney" <jtl@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r332382 - head/sys/netinet Message-ID: <201804101700.w3AH0b4X007036@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jtl Date: Tue Apr 10 17:00:37 2018 New Revision: 332382 URL: https://svnweb.freebsd.org/changeset/base/332382 Log: Add missing header change from r332381. Sponsored by: Netflix, Inc. Pointy hat: jtl Modified: head/sys/netinet/tcp_var.h Modified: head/sys/netinet/tcp_var.h ============================================================================== --- head/sys/netinet/tcp_var.h Tue Apr 10 16:59:36 2018 (r332381) +++ head/sys/netinet/tcp_var.h Tue Apr 10 17:00:37 2018 (r332382) @@ -688,11 +688,14 @@ void tcp_inptoxtp(const struct inpcb *, struct xtcpcb #endif /* - * TCP function name-to-id mapping exported to user-land via sysctl(3). + * TCP function information (name-to-id mapping, aliases, and refcnt) + * exported to user-land via sysctl(3). */ -struct tcp_function_id { +struct tcp_function_info { + uint32_t tfi_refcnt; uint8_t tfi_id; char tfi_name[TCP_FUNCTION_NAME_LEN_MAX]; + char tfi_alias[TCP_FUNCTION_NAME_LEN_MAX]; }; /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804101700.w3AH0b4X007036>