[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.8.1 and 1.97.8.2

version 1.97.8.1, 2007/11/06 23:33:51 version 1.97.8.2, 2008/01/09 01:57:29
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)                  if (ip->ip_id == 0 && m->m_pkthdr.len >= IP_MINFRAGSIZE)
                         ip->ip_id = ip_newid();                          ip->ip_id = ip_newid();
                 opts = NULL;                  opts = NULL;
                 /* XXX prevent ip_output from overwriting header fields */                  /* XXX prevent ip_output from overwriting header fields */
Line 384  rip_ctloutput(int op, struct socket *so,
Line 384  rip_ctloutput(int op, struct socket *so,
                         *m = m_intopt(so,                          *m = m_intopt(so,
                             (inp->inp_flags & INP_NOHEADER) ? 1 : 0);                              (inp->inp_flags & INP_NOHEADER) ? 1 : 0);
                         return 0;                          return 0;
                 } else if (*m == NULL || (*m)->m_len < sizeof(int))                  } else if (*m == NULL || (*m)->m_len != sizeof(int))
                         error = EINVAL;                          error = EINVAL;
                 else if (*mtod(*m, int *)) {                  else if (*mtod(*m, int *)) {
                         inp->inp_flags &= ~INP_HDRINCL;                          inp->inp_flags &= ~INP_HDRINCL;
Line 400  rip_ctloutput(int op, struct socket *so,
Line 400  rip_ctloutput(int op, struct socket *so,
         case PRCO_SETOPT:          case PRCO_SETOPT:
                 switch (optname) {                  switch (optname) {
                 case IP_HDRINCL:                  case IP_HDRINCL:
                         if (*m == NULL || (*m)->m_len < sizeof(int))                          if (*m == NULL || (*m)->m_len != sizeof(int))
                                 error = EINVAL;                                  error = EINVAL;
                         else if (*mtod(*m, int *))                          else if (*mtod(*m, int *))
                                 inp->inp_flags |= INP_HDRINCL;                                  inp->inp_flags |= INP_HDRINCL;

Legend:
Removed from v.1.97.8.1  
changed lines
  Added in v.1.97.8.2

CVSweb <webmaster@jp.NetBSD.org>