[BACK]Return to udp_usrreq.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/udp_usrreq.c between version 1.37 and 1.38

version 1.37, 1996/09/30 16:16:45 version 1.38, 1996/10/16 19:33:39
Line 34 
Line 34 
  *   *
  *      @(#)udp_usrreq.c        8.4 (Berkeley) 1/21/94   *      @(#)udp_usrreq.c        8.4 (Berkeley) 1/21/94
  */   */
 #include "kgdb.h"  #include "ipkdb.h"
   
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/malloc.h>  #include <sys/malloc.h>
Line 281  udp_input(m, va_alist)
Line 281  udp_input(m, va_alist)
                         }                          }
                         *ip = save_ip;                          *ip = save_ip;
                         ip->ip_len += iphlen;                          ip->ip_len += iphlen;
 #if NKGDB > 0  #if NIPKDB > 0
                         if (checkkgdb(&ip->ip_src,                          if (checkipkdb(&ip->ip_src,
                                       uh->uh_sport,                                         uh->uh_sport,
                                       uh->uh_dport,                                         uh->uh_dport,
                                       m,                                         m,
                                       iphlen + sizeof(struct udphdr),                                         iphlen + sizeof(struct udphdr),
                                       len - sizeof(struct udphdr)))                                         len - sizeof(struct udphdr)))
                         /* It was a debugger connect packet, just drop it now */                          /* It was a debugger connect packet, just drop it now */
                                 goto bad;                                  goto bad;
 #endif  #endif

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38

CVSweb <webmaster@jp.NetBSD.org>