[BACK]Return to raw_ip.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/raw_ip.c between version 1.49 and 1.51

version 1.49, 2000/02/01 22:52:08 version 1.51, 2000/02/17 10:59:36
Line 95 
Line 95 
 #include <netinet6/ipsec.h>  #include <netinet6/ipsec.h>
 #endif /*IPSEC*/  #endif /*IPSEC*/
   
 extern u_char ip_protox[];  
 extern struct  protosw inetsw[];  
 struct inpcbtable rawcbtable;  struct inpcbtable rawcbtable;
   
 int      rip_bind __P((struct inpcb *, struct mbuf *));  int      rip_bind __P((struct inpcb *, struct mbuf *));
Line 431  rip_usrreq(so, req, m, nam, control, p)
Line 429  rip_usrreq(so, req, m, nam, control, p)
                 return (in_control(so, (long)m, (caddr_t)nam,                  return (in_control(so, (long)m, (caddr_t)nam,
                     (struct ifnet *)control, p));                      (struct ifnet *)control, p));
   
         if (req == PRU_PURGEADDR) {          if (req == PRU_PURGEIF) {
                 in_purgeaddr((struct ifaddr *)nam, (struct ifnet *)control);                  in_purgeif((struct ifnet *)control);
                   in_pcbpurgeif(&rawcbtable, (struct ifnet *)control);
                 return (0);                  return (0);
         }          }
   

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.51

CVSweb <webmaster@jp.NetBSD.org>