[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.222 and 1.224

version 1.222, 2005/12/11 12:24:57 version 1.224, 2006/02/18 17:47:07
Line 279  static u_int ip_reass_ttl_decr(u_int tic
Line 279  static u_int ip_reass_ttl_decr(u_int tic
 static void     ip_reass_drophalf(void);  static void     ip_reass_drophalf(void);
   
   
 static __inline int ipq_lock_try(void);  static inline int ipq_lock_try(void);
 static __inline void ipq_unlock(void);  static inline void ipq_unlock(void);
   
 static __inline int  static inline int
 ipq_lock_try(void)  ipq_lock_try(void)
 {  {
         int s;          int s;
Line 301  ipq_lock_try(void)
Line 301  ipq_lock_try(void)
         return (1);          return (1);
 }  }
   
 static __inline void  static inline void
 ipq_unlock(void)  ipq_unlock(void)
 {  {
         int s;          int s;
Line 1839  ip_forward(struct mbuf *m, int srcrt)
Line 1839  ip_forward(struct mbuf *m, int srcrt)
   
         dest = 0;          dest = 0;
 #ifdef DIAGNOSTIC  #ifdef DIAGNOSTIC
         if (ipprintfs)          if (ipprintfs) {
                 printf("forward: src %2.2x dst %2.2x ttl %x\n",                  printf("forward: src %s ", inet_ntoa(ip->ip_src));
                     ntohl(ip->ip_src.s_addr),                  printf("dst %s ttl %x\n", inet_ntoa(ip->ip_dst), ip->ip_ttl);
                     ntohl(ip->ip_dst.s_addr), ip->ip_ttl);          }
 #endif  #endif
         if (m->m_flags & (M_BCAST|M_MCAST) || in_canforward(ip->ip_dst) == 0) {          if (m->m_flags & (M_BCAST|M_MCAST) || in_canforward(ip->ip_dst) == 0) {
                 ipstat.ips_cantforward++;                  ipstat.ips_cantforward++;

Legend:
Removed from v.1.222  
changed lines
  Added in v.1.224

CVSweb <webmaster@jp.NetBSD.org>