Home
last modified time | relevance | path

Searched refs:mfctable (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/netinet/
H A Dip_mroute.c173 struct mfctable { struct
191 VNET_DEFINE_STATIC(struct mfctable *, mfctables); argument
319 static int add_bw_upcall(struct mfctable *, struct bw_upcall *);
320 static int add_mfc(struct mfctable *, struct mfcctl2 *);
321 static int add_vif(struct mfctable *, int, struct vifctl *);
325 static void bw_upcalls_send(struct mfctable *);
327 static int del_bw_upcall(struct mfctable *, struct bw_upcall *);
328 static int del_mfc(struct mfctable *, struct mfcctl2 *);
329 static int del_vif(struct mfctable *, vifi_t);
330 static int del_vif_locked(struct mfctable *, vifi_t, struct ifnet **,
[all …]
H A Dip_mroute.h351 struct mfctable *bm_mfctable; /* Routing table */
/freebsd/usr.bin/netstat/
H A Dmroute.c335 struct mfc *mfctable; in mroutepr() local
344 mfctable = malloc(len); in mroutepr()
345 if (mfctable == NULL) { in mroutepr()
349 if (sysctlbyname("net.inet.ip.mfctable", mfctable, &len, NULL, in mroutepr()
351 free(mfctable); in mroutepr()
356 m = mfctable; in mroutepr()
366 free(mfctable); in mroutepr()