[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.100.6.2 and 1.100.6.3

version 1.100.6.2, 2007/12/27 00:46:31 version 1.100.6.3, 2008/02/18 21:07:08
Line 358  rip_output(struct mbuf *m, ...)
Line 358  rip_output(struct mbuf *m, ...)
                 }                  }
                 HTONS(ip->ip_len);                  HTONS(ip->ip_len);
                 HTONS(ip->ip_off);                  HTONS(ip->ip_off);
                 if (ip->ip_id == 0 && m->m_pkthdr.len >= IP_MINFRAGSIZE)                  if (ip->ip_id != 0 || m->m_pkthdr.len < IP_MINFRAGSIZE)
                         ip->ip_id = ip_newid();                          flags |= IP_NOIPNEWID;
                 opts = NULL;                  opts = NULL;
                 /* XXX prevent ip_output from overwriting header fields */                  /* XXX prevent ip_output from overwriting header fields */
                 flags |= IP_RAWOUTPUT;                  flags |= IP_RAWOUTPUT;

Legend:
Removed from v.1.100.6.2  
changed lines
  Added in v.1.100.6.3

CVSweb <webmaster@jp.NetBSD.org>