diff options
| author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-06 18:16:03 +0000 |
|---|---|---|
| committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-06 18:16:03 +0000 |
| commit | c23d234cce6b4fc5ca914f9e454843f56213ddcc (patch) | |
| tree | e7789df4ce2409eec88ed29699c5f732253f2307 /sys/netinet | |
| parent | 5ea0b02d5ab7c303878e758f2c1227998f61c84c (diff) | |
Notes
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/ip_gre.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index 4701e1f212570..c14e33cb457b3 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -100,9 +100,9 @@ __RCSID("@(#) $FreeBSD$"); void gre_inet_ntoa(struct in_addr in); /* XXX */ #endif -struct gre_softc *gre_lookup __P((struct mbuf *, u_int8_t)); +static struct gre_softc *gre_lookup __P((struct mbuf *, u_int8_t)); -int gre_input2 __P((struct mbuf *, int, u_char)); +static int gre_input2 __P((struct mbuf *, int, u_char)); /* * De-encapsulate a packet and feed it back through ip input (this @@ -146,7 +146,7 @@ gre_input(m, va_alist) * routine. */ -int +static int gre_input2(struct mbuf *m ,int hlen, u_char proto) { struct greip *gip = mtod(m, struct greip *); @@ -339,7 +339,7 @@ gre_mobile_input(m, va_alist) /* * Find the gre interface associated with our src/dst/proto set. */ -struct gre_softc * +static struct gre_softc * gre_lookup(m, proto) struct mbuf *m; u_int8_t proto; |
