0001-Skip-placemarker-PCB-s-instead-of-looking-for-them.patch
| b/sys/netinet6/udp6_usrreq.c | ||
|---|---|---|
| 231 | 231 |
*/ |
| 232 | 232 |
last = NULL; |
| 233 | 233 |
LIST_FOREACH(in6p, &udbinfo.pcblisthead, inp_list) {
|
| 234 |
if (!(in6p->inp_flags & INP_PLACEMARKER))
|
|
| 234 |
if (in6p->inp_flags & INP_PLACEMARKER)
|
|
| 235 | 235 |
continue; |
| 236 | 236 |
if (!(in6p->inp_vflag & INP_IPV6)) |
| 237 | 237 |
continue; |
| 238 |
- |
|