Deleted Added
full compact
3c3
< # Copyright (c) 2006-2012 Devin Teske
---
> # Copyright (c) 2006-2013 Devin Teske
27c27
< # $FreeBSD: head/usr.sbin/bsdconfig/networking/share/routing.subr 245402 2013-01-14 01:15:25Z dteske $
---
> # $FreeBSD: head/usr.sbin/bsdconfig/networking/share/routing.subr 247280 2013-02-25 19:55:32Z dteske $
35a36
> f_include $BSDCFG_SHARE/media/tcpip.subr
44,62d44
< # f_route_get_default
< #
< # Returns the IP address of the currently active default router.
< #
< f_route_get_default()
< {
< route -n get default 2> /dev/null | awk \
< '
< BEGIN { found = 0 }
< ( $1 == "gateway:" ) \
< {
< print $2
< found = 1
< exit
< }
< END { exit ! found }
< '
< }
<