[BACK]Return to ip_input.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / netinet

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/netinet/ip_input.c between version 1.115 and 1.118

version 1.115, 2000/06/28 03:01:16 version 1.118, 2000/08/26 10:41:29
Line 147 
Line 147 
 #ifdef IPSEC  #ifdef IPSEC
 #include <netinet6/ipsec.h>  #include <netinet6/ipsec.h>
 #include <netkey/key.h>  #include <netkey/key.h>
 #include <netkey/key_debug.h>  
 #endif  #endif
   
 #ifndef IPFORWARDING  #ifndef IPFORWARDING
Line 1666  ip_sysctl(name, namelen, oldp, oldlenp, 
Line 1665  ip_sysctl(name, namelen, oldp, oldlenp, 
         case IPCTL_ANONPORTMIN:          case IPCTL_ANONPORTMIN:
                 old = anonportmin;                  old = anonportmin;
                 error = sysctl_int(oldp, oldlenp, newp, newlen, &anonportmin);                  error = sysctl_int(oldp, oldlenp, newp, newlen, &anonportmin);
                 if (anonportmin >= anonportmax || anonportmin > 65535                  if (anonportmin >= anonportmax || anonportmin < 0
                       || anonportmin > 65535
 #ifndef IPNOPRIVPORTS  #ifndef IPNOPRIVPORTS
                     || anonportmin < IPPORT_RESERVED                      || anonportmin < IPPORT_RESERVED
 #endif  #endif
Line 1678  ip_sysctl(name, namelen, oldp, oldlenp, 
Line 1678  ip_sysctl(name, namelen, oldp, oldlenp, 
         case IPCTL_ANONPORTMAX:          case IPCTL_ANONPORTMAX:
                 old = anonportmax;                  old = anonportmax;
                 error = sysctl_int(oldp, oldlenp, newp, newlen, &anonportmax);                  error = sysctl_int(oldp, oldlenp, newp, newlen, &anonportmax);
                 if (anonportmin >= anonportmax || anonportmax > 65535                  if (anonportmin >= anonportmax || anonportmax < 0
                       || anonportmax > 65535
 #ifndef IPNOPRIVPORTS  #ifndef IPNOPRIVPORTS
                     || anonportmax < IPPORT_RESERVED                      || anonportmax < IPPORT_RESERVED
 #endif  #endif
Line 1716  ip_sysctl(name, namelen, oldp, oldlenp, 
Line 1717  ip_sysctl(name, namelen, oldp, oldlenp, 
                                   &ip_gif_ttl));                                    &ip_gif_ttl));
 #endif  #endif
   
   #ifndef IPNOPRIVPORTS
           case IPCTL_LOWPORTMIN:
                   old = lowportmin;
                   error = sysctl_int(oldp, oldlenp, newp, newlen, &lowportmin);
                   if (lowportmin >= lowportmax
                       || lowportmin > IPPORT_RESERVEDMAX
                       || lowportmin < IPPORT_RESERVEDMIN
                       ) {
                           lowportmin = old;
                           return (EINVAL);
                   }
                   return (error);
           case IPCTL_LOWPORTMAX:
                   old = lowportmax;
                   error = sysctl_int(oldp, oldlenp, newp, newlen, &lowportmax);
                   if (lowportmin >= lowportmax
                       || lowportmax > IPPORT_RESERVEDMAX
                       || lowportmax < IPPORT_RESERVEDMIN
                       ) {
                           lowportmax = old;
                           return (EINVAL);
                   }
                   return (error);
   #endif
   
         default:          default:
                 return (EOPNOTSUPP);                  return (EOPNOTSUPP);
         }          }

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.118

CVSweb <webmaster@jp.NetBSD.org>