mirror of https://github.com/hak5/openwrt.git
odhcp6c: Make SLAAC-only work without reqprefix=no
Previously if the upstream router did not provide any DHCPv6-service the wan6 interface would not come up even if RAs were received. The new behavior allows the wan6 interface to comeup with RA-only configuration after a timeout of 10s. SVN-Revision: 36555lede-17.01
parent
95e139d0b2
commit
9c1ed6447b
|
@ -8,14 +8,14 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=odhcp6c
|
||||
PKG_VERSION:=2013-04-23
|
||||
PKG_VERSION:=2013-05-05
|
||||
PKG_RELEASE=$(PKG_SOURCE_VERSION)
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE_URL:=git://github.com/sbyx/odhcp6c.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_VERSION:=2515dbce13746bb1633cfa4b8e22424946a7f007
|
||||
PKG_SOURCE_VERSION:=493b90de720d198a988460bee83340dafbbfa10d
|
||||
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
|
|
@ -78,7 +78,11 @@ teardown_interface() {
|
|||
}
|
||||
|
||||
case "$2" in
|
||||
informed|bound|updated|rebound|ra-updated)
|
||||
bound)
|
||||
teardown_interface "$1"
|
||||
setup_interface "$1"
|
||||
;;
|
||||
informed|updated|rebound|ra-updated)
|
||||
setup_interface "$1"
|
||||
;;
|
||||
started|stopped|unbound)
|
||||
|
|
Loading…
Reference in New Issue