| 345 | } |
| 346 | |
| 347 | void |
| 348 | toe_syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th, |
| 349 | struct inpcb *inp, void *tod, void *todctx, uint8_t iptos) |
| 350 | { |
| 351 | struct socket *lso = inp->inp_socket; |
| 352 | |
| 353 | INP_WLOCK_ASSERT(inp); |
| 354 | |
| 355 | syncache_add(inc, to, th, inp, &lso, NULL, tod, todctx, iptos); |
| 356 | } |
| 357 | |
| 358 | int |
| 359 | toe_syncache_expand(struct in_conninfo *inc, struct tcpopt *to, |
nothing calls this directly
no test coverage detected