aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/toecore.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet/toecore.c')
-rw-r--r--sys/netinet/toecore.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/netinet/toecore.c b/sys/netinet/toecore.c
index 2d4dde43a4de..74fe91d80d84 100644
--- a/sys/netinet/toecore.c
+++ b/sys/netinet/toecore.c
@@ -182,6 +182,14 @@ toedev_ctloutput(struct toedev *tod __unused, struct tcpcb *tp __unused,
return;
}
+static void
+toedev_tcp_info(struct toedev *tod __unused, struct tcpcb *tp __unused,
+ struct tcp_info *ti __unused)
+{
+
+ return;
+}
+
/*
* Inform one or more TOE devices about a listening socket.
*/
@@ -271,6 +279,7 @@ init_toedev(struct toedev *tod)
tod->tod_syncache_respond = toedev_syncache_respond;
tod->tod_offload_socket = toedev_offload_socket;
tod->tod_ctloutput = toedev_ctloutput;
+ tod->tod_tcp_info = toedev_tcp_info;
}
/*