summaryrefslogtreecommitdiff
path: root/lib/if.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/if.h')
-rw-r--r--lib/if.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/if.h b/lib/if.h
index 708853bc..70a12860 100644
--- a/lib/if.h
+++ b/lib/if.h
@@ -94,7 +94,8 @@ struct interface
int metric;
/* Interface MTU. */
- int mtu;
+ int mtu; /* IPv4 MTU */
+ int mtu6; /* IPv6 MTU - probably, but not neccessarily same as mtu */
/* Hardware address. */
#ifdef HAVE_SOCKADDR_DL
@@ -205,8 +206,13 @@ char *ifindex2ifname (unsigned int);
struct connected *connected_new ();
void connected_free (struct connected *);
void connected_add (struct interface *, struct connected *);
-struct connected *connected_delete_by_prefix (struct interface *, struct prefix *);
-struct connected *connected_lookup_address (struct interface *, struct in_addr);
+struct connected *connected_add_by_prefix (struct interface *,
+ struct prefix *,
+ struct prefix *);
+struct connected *connected_delete_by_prefix (struct interface *,
+ struct prefix *);
+struct connected *connected_lookup_address (struct interface *,
+ struct in_addr);
#ifndef HAVE_IF_NAMETOINDEX
unsigned int if_nametoindex (const char *);