From caca38124e771d207d206c8ffff88ec7fd813153 Mon Sep 17 00:00:00 2001 From: mvs Date: Mon, 5 Sep 2022 10:31:25 +0000 Subject: [PATCH] Add missing prototypes for route_attach() and route_detach(). --- sys/net/rtsock.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index 2e31020c5c6..ffb8f8bc7be 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtsock.c,v 1.353 2022/09/03 22:43:38 mvs Exp $ */ +/* $OpenBSD: rtsock.c,v 1.354 2022/09/05 10:31:25 mvs Exp $ */ /* $NetBSD: rtsock.c,v 1.18 1996/03/29 00:32:10 cgd Exp $ */ /* @@ -111,6 +111,8 @@ void rcb_ref(void *, void *); void rcb_unref(void *, void *); int route_output(struct mbuf *, struct socket *); int route_ctloutput(int, struct socket *, int, int, struct mbuf *); +int route_attach(struct socket *, int); +int route_detach(struct socket *); int route_disconnect(struct socket *); int route_shutdown(struct socket *); int route_rcvd(struct socket *); -- 2.20.1