Changeset View
Changeset View
Standalone View
Standalone View
sbin/route/route.c
| Show First 20 Lines • Show All 1,655 Lines • ▼ Show 20 Lines | static const char *const msgtypes[] = { | ||||
| "RTM_RESOLVE: Route created by cloning", | "RTM_RESOLVE: Route created by cloning", | ||||
| "RTM_NEWADDR: address being added to iface", | "RTM_NEWADDR: address being added to iface", | ||||
| "RTM_DELADDR: address being removed from iface", | "RTM_DELADDR: address being removed from iface", | ||||
| "RTM_IFINFO: iface status change", | "RTM_IFINFO: iface status change", | ||||
| "RTM_NEWMADDR: new multicast group membership on iface", | "RTM_NEWMADDR: new multicast group membership on iface", | ||||
| "RTM_DELMADDR: multicast group membership removed from iface", | "RTM_DELMADDR: multicast group membership removed from iface", | ||||
| "RTM_IFANNOUNCE: interface arrival/departure", | "RTM_IFANNOUNCE: interface arrival/departure", | ||||
| "RTM_IEEE80211: IEEE 802.11 wireless event", | "RTM_IEEE80211: IEEE 802.11 wireless event", | ||||
| "RTM_IPFWLOG: IPFW log", | |||||
| }; | }; | ||||
| static const char metricnames[] = | static const char metricnames[] = | ||||
| "\011weight\010rttvar\7rtt\6ssthresh\5sendpipe\4recvpipe\3expire" | "\011weight\010rttvar\7rtt\6ssthresh\5sendpipe\4recvpipe\3expire" | ||||
| "\1mtu"; | "\1mtu"; | ||||
| const char routeflags[] = | const char routeflags[] = | ||||
| "\1UP\2GATEWAY\3HOST\4REJECT\5DYNAMIC\6MODIFIED\7DONE" | "\1UP\2GATEWAY\3HOST\4REJECT\5DYNAMIC\6MODIFIED\7DONE" | ||||
| "\012XRESOLVE\013LLINFO\014STATIC\015BLACKHOLE" | "\012XRESOLVE\013LLINFO\014STATIC\015BLACKHOLE" | ||||
| ▲ Show 20 Lines • Show All 352 Lines • Show Last 20 Lines | |||||