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

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

Diff for /src/sys/netinet6/in6_src.c between version 1.1.2.1 and 1.1.2.2

version 1.1.2.1, 2000/08/27 01:11:27 version 1.1.2.2, 2000/08/27 01:25:08
Line 1 
Line 1 
 /*      $NetBSD$        */  /*      $NetBSD$        */
 /*      $KAME: in6_src.c,v 1.27 2000/06/21 08:07:13 itojun Exp $        */  /*      $KAME: in6_src.c,v 1.34 2000/08/26 10:00:45 itojun Exp $        */
   
 /*  /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.   * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
Line 346  in6_pcbsetport(laddr, in6p)
Line 346  in6_pcbsetport(laddr, in6p)
                 if (p == 0 || (suser(p->p_ucred, &p->p_acflag) != 0))                  if (p == 0 || (suser(p->p_ucred, &p->p_acflag) != 0))
                         return (EACCES);                          return (EACCES);
 #endif  #endif
                 min = IPV6PORT_RESERVEDMIN;                  min = ip6_lowportmin;
                 max = IPV6PORT_RESERVEDMAX;                  max = ip6_lowportmax;
         } else {          } else {
                 min = IPV6PORT_ANONMIN;                  min = ip6_anonportmin;
                 max = IPV6PORT_ANONMAX;                  max = ip6_anonportmax;
         }          }
   
         /* value out of range */          /* value out of range */

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

CVSweb <webmaster@jp.NetBSD.org>