Print this page
13175 Add support for IP_RECVTOS
13182 CMSG_ macros should have man pages
Change-ID: I784aa36cfd3c17e3cccbf1fd329fa7e69b663ef9

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/inet/ip_stack.h
          +++ new/usr/src/uts/common/inet/ip_stack.h
↓ open down ↓ 18 lines elided ↑ open up ↑
  19   19   * CDDL HEADER END
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
  24   24   * Use is subject to license terms.
  25   25   */
  26   26  
  27   27  /*
  28   28   * Copyright 2019 Joyent, Inc.
       29 + * Copyright 2020 OmniOS Community Edition (OmniOSce) Association.
  29   30   */
  30   31  
  31   32  #ifndef _INET_IP_STACK_H
  32   33  #define _INET_IP_STACK_H
  33   34  
  34   35  #ifdef  __cplusplus
  35   36  extern "C" {
  36   37  #endif
  37   38  
  38   39  #include <sys/netstack.h>
↓ open down ↓ 39 lines elided ↑ open up ↑
  78   79          kstat_named_t   ip_tcp_in_sw_cksum_err;
  79   80          kstat_named_t   ip_udp_in_full_hw_cksum_err;
  80   81          kstat_named_t   ip_udp_in_part_hw_cksum_err;
  81   82          kstat_named_t   ip_udp_in_sw_cksum_err;
  82   83          kstat_named_t   conn_in_recvdstaddr;
  83   84          kstat_named_t   conn_in_recvopts;
  84   85          kstat_named_t   conn_in_recvif;
  85   86          kstat_named_t   conn_in_recvslla;
  86   87          kstat_named_t   conn_in_recvucred;
  87   88          kstat_named_t   conn_in_recvttl;
       89 +        kstat_named_t   conn_in_recvtos;
  88   90          kstat_named_t   conn_in_recvhopopts;
  89   91          kstat_named_t   conn_in_recvhoplimit;
  90   92          kstat_named_t   conn_in_recvdstopts;
  91   93          kstat_named_t   conn_in_recvrthdrdstopts;
  92   94          kstat_named_t   conn_in_recvrthdr;
  93   95          kstat_named_t   conn_in_recvpktinfo;
  94   96          kstat_named_t   conn_in_recvtclass;
  95   97          kstat_named_t   conn_in_timestamp;
  96   98  } ip_stat_t;
  97   99  
↓ open down ↓ 359 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX