| version 1.75.2.7, 2002/06/20 03:49:01 |
version 1.75.2.8, 2002/08/01 02:46:50 |
| Line 262 udp_input(m, va_alist) |
|
| Line 262 udp_input(m, va_alist) |
|
| return; |
return; |
| } |
} |
| #endif |
#endif |
| |
KASSERT(UDP_HDR_ALIGNED_P(uh)); |
| |
|
| /* destination port of 0 is illegal, based on RFC768. */ |
/* destination port of 0 is illegal, based on RFC768. */ |
| if (uh->uh_dport == 0) |
if (uh->uh_dport == 0) |
| Line 418 udp6_input(mp, offp, proto) |
|
| Line 419 udp6_input(mp, offp, proto) |
|
| return IPPROTO_DONE; |
return IPPROTO_DONE; |
| } |
} |
| #endif |
#endif |
| |
KASSERT(UDP_HDR_ALIGNED_P(uh)); |
| ulen = ntohs((u_short)uh->uh_ulen); |
ulen = ntohs((u_short)uh->uh_ulen); |
| /* |
/* |
| * RFC2675 section 4: jumbograms will have 0 in the UDP header field, |
* RFC2675 section 4: jumbograms will have 0 in the UDP header field, |