[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.97.2.1 and 1.98

version 1.97.2.1, 2007/09/03 10:23:46 version 1.98, 2007/09/02 03:12:23
Line 184  rip_input(struct mbuf *m, ...)
Line 184  rip_input(struct mbuf *m, ...)
                         /* do not inject data to pcb */                          /* do not inject data to pcb */
                 }                  }
 #endif /*IPSEC*/  #endif /*IPSEC*/
                 else if ((n = m_copypacket(m, M_DONTWAIT)) != NULL) {                  else if ((n = m_copym(m, 0, M_COPYALL, M_DONTWAIT)) != NULL) {
                         if (last->inp_flags & INP_CONTROLOPTS ||                          if (last->inp_flags & INP_CONTROLOPTS ||
                             last->inp_socket->so_options & SO_TIMESTAMP)                              last->inp_socket->so_options & SO_TIMESTAMP)
                                 ip_savecontrol(last, &opts, ip, n);                                  ip_savecontrol(last, &opts, ip, n);

Legend:
Removed from v.1.97.2.1  
changed lines
  Added in v.1.98

CVSweb <webmaster@jp.NetBSD.org>