| 356 | } |
| 357 | |
| 358 | int |
| 359 | toe_syncache_expand(struct in_conninfo *inc, struct tcpopt *to, |
| 360 | struct tcphdr *th, struct socket **lsop) |
| 361 | { |
| 362 | |
| 363 | NET_EPOCH_ASSERT(); |
| 364 | |
| 365 | return (syncache_expand(inc, to, th, lsop, NULL)); |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * General purpose check to see if a 4-tuple is in use by the kernel. If a TCP |
nothing calls this directly
no test coverage detected