home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / detk45he.zip / netinet / ip_var.h < prev    next >
C/C++ Source or Header  |  1999-05-11  |  7KB  |  163 lines

  1. /*
  2.  * Copyright (c) 1982, 1986, 1993
  3.  *      The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by the University of
  16.  *      California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  *      @(#)ip_var.h    8.2 (Berkeley) 1/9/95
  34.  */
  35.  
  36. #ifndef _NETINET_IP_VAR_H_
  37. #define _NETINET_IP_VAR_H_
  38.  
  39. #ifdef TCPV40HDRS
  40. #error error: netinet\ip_var.h is for TCP/IP toolkit 5.0 or later releases only
  41. #else
  42. /*
  43.  * Overlay for ip header used by other protocols (tcp, udp).
  44.  */
  45. #pragma pack(1)
  46. struct ipovly {
  47.         caddr_t ih_next, ih_prev;       /* for protocol sequence q's */
  48.         u_char  ih_x1;                  /* (unused) */
  49.         u_char  ih_pr;                  /* protocol */
  50.         short   ih_len;                 /* protocol length */
  51.         struct  in_addr ih_src;         /* source internet address */
  52.         struct  in_addr ih_dst;         /* destination internet address */
  53. };
  54. #pragma pack()
  55.  
  56. /*
  57.  * Ip reassembly queue structure.  Each fragment
  58.  * being reassembled is attached to one of these structures.
  59.  * They are timed out after ipq_ttl drops to 0, and may also
  60.  * be reclaimed if memory becomes tight.
  61.  */
  62. #pragma pack(1)
  63. struct ipq {
  64.         struct  ipq *next,*prev;        /* to other reass headers */
  65.         u_char  ipq_ttl;                /* time for reass q to live */
  66.         u_char  ipq_p;                  /* protocol of this fragment */
  67.         u_short ipq_id;                 /* sequence id for reassembly */
  68.         struct  ipasfrag *ipq_next,*ipq_prev;
  69.                                         /* to ip headers of fragments */
  70.         struct  in_addr ipq_src,ipq_dst;
  71. };
  72. #pragma pack()
  73.  
  74. /*
  75.  * Ip header, when holding a fragment.
  76.  *
  77.  * Note: ipf_next must be at same offset as ipq_next above
  78.  */
  79. #pragma pack(1)
  80. struct  ipasfrag {
  81. #if BYTE_ORDER == LITTLE_ENDIAN
  82.         unsigned ip_hl:4,
  83.                 ip_v:4;
  84. #endif
  85. #if BYTE_ORDER == BIG_ENDIAN
  86.         unsigned ip_v:4,
  87.                 ip_hl:4;
  88. #endif
  89.         u_char  ipf_mff;                /* XXX overlays ip_tos: use low bit
  90.                                          * to avoid destroying tos;
  91.                                          * copied from (ip_off&IP_MF) */
  92.         u_short ip_len;   /* should be ushort rather than short */
  93.         u_short ip_id;
  94.         short   ip_off;
  95.         u_char  ip_ttl;
  96.         u_char  ip_p;
  97.         u_short ip_sum;
  98.         struct  ipasfrag *ipf_next;     /* next fragment */
  99.         struct  ipasfrag *ipf_prev;     /* previous fragment */
  100. };
  101. #pragma pack()
  102.  
  103. #define MAX_IPOPTLEN    40
  104.  
  105. struct  ipstat {
  106.         u_long  ips_total;              /* total packets received */
  107.         u_long  ips_badsum;             /* checksum bad */
  108.         u_long  ips_tooshort;           /* packet too short */
  109.         u_long  ips_toosmall;           /* not enough data */
  110.         u_long  ips_badhlen;            /* ip header length < data size */
  111.         u_long  ips_badlen;             /* ip length < ip header length */
  112.         u_long  ips_fragments;          /* fragments received */
  113.         u_long  ips_fragdropped;        /* frags dropped (dups, out of space)*/
  114.         u_long  ips_fragtimeout;        /* fragments timed out */
  115.         u_long  ips_forward;            /* packets forwarded */
  116.         u_long  ips_cantforward;        /* packets rcvd for unreachable dest */
  117.         u_long  ips_redirectsent;       /* packets forwarded on same net */
  118.         u_long  ips_noproto;            /* unknown or unsupported protocol */
  119.         u_long  ips_delivered;          /* datagrams delivered to upper level*/
  120.         u_long  ips_localout;           /* total ip packets generated here */
  121.         u_long  ips_odropped;           /* lost packets due to nobufs, etc. */
  122.         u_long  ips_reassembled;        /* total packets reassembled ok */
  123.         u_long  ips_fragmented;         /* datagrams sucessfully fragmented */
  124.         u_long  ips_ofragments;         /* output fragments created */
  125.         u_long  ips_cantfrag;           /* don't fragment flag was set, etc. */
  126.         u_long  ips_badoptions;         /* error in option processing */
  127.         u_long  ips_noroute;            /* packets discarded due to no route */
  128.         u_long  ips_badvers;            /* ip version != 4 */
  129.         u_long  ips_rawout;             /* total raw ip packets generated */
  130. };
  131.  
  132. /*
  133.  * Names for IP sysctl objects
  134.  */
  135. #define IPCTL_FORWARDING        1       /* act as router */
  136. #define IPCTL_SENDREDIRECTS     2       /* may send redirects when forwarding */
  137. #define IPCTL_INETCFG           40      /* Generic IP  Inetcfg switching */
  138. #define IPCTL_INETVER           41      /* sysctl: AFINET Version */
  139. #define IPCTL_FORWARD           42      /* sysctl:IP Forwarding */
  140. #define IPCTL_FIREWALL          43      /* sysctl:FIREWALL flag */
  141. #define IPCTL_ARPTKILLC         44      /* sysctl:ARP cache completed entry TO */
  142. #define IPCTL_ARPTKILLI         45      /* sysctl:ARP cache incomplete entry TO */
  143. #define FRAGCTL_TTL             46      /* sysctl:Fragments TTL */
  144. #define IPCTL_SYNATTACK         47      /* sysctl:SYN Attack flg ON/OFF */
  145. #define IPCTL_MULTIDEFROUTES    48      /* sysctl:Multiple def routes. lynx stuff */
  146.  
  147. #define IPCTL_NAMES { \
  148.         { 0, 0 }, \
  149.         { "forwarding", CTLTYPE_INT }, \
  150.         { "redirect", CTLTYPE_INT }, \
  151.         { "mtu", CTLTYPE_INT }, \
  152.         { "multi-default-routes", CTLTYPE_INT }, \
  153.         { "inetver", CTLTYPE_INETVER }, \
  154.         { "inetcfg", CTLTYPE_INETCFG }, \
  155. }
  156.  
  157. #ifdef KERNEL
  158. #include <private/ip_var.h>
  159. #endif
  160.  
  161. #endif /* TCPV40HDRS */
  162. #endif /* _NETINET_IP_VAR_H_ */
  163.