| 176 | } |
| 177 | |
| 178 | void |
| 179 | tcp_offload_ctloutput(struct tcpcb *tp, int sopt_dir, int sopt_name) |
| 180 | { |
| 181 | struct toedev *tod = tp->tod; |
| 182 | |
| 183 | KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp)); |
| 184 | INP_WLOCK_ASSERT(tp->t_inpcb); |
| 185 | |
| 186 | tod->tod_ctloutput(tod, tp, sopt_dir, sopt_name); |
| 187 | } |
| 188 | |
| 189 | void |
| 190 | tcp_offload_tcp_info(struct tcpcb *tp, struct tcp_info *ti) |
no outgoing calls
no test coverage detected