|
|
| Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
| version 1.67, 2003/02/26 06:31:15 | version 1.68, 2003/05/27 22:36:38 | ||
|---|---|---|---|
|
|
||
| m_freem(m); | m_freem(m); | ||
| return (EMSGSIZE); | return (EMSGSIZE); | ||
| } | } | ||
| M_PREPEND(m, sizeof(struct ip), M_WAIT); | M_PREPEND(m, sizeof(struct ip), M_DONTWAIT); | ||
| if (!m) | |||
| return (ENOBUFS); | |||
| ip = mtod(m, struct ip *); | ip = mtod(m, struct ip *); | ||
| ip->ip_tos = 0; | ip->ip_tos = 0; | ||
| ip->ip_off = htons(0); | ip->ip_off = htons(0); |