mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 03:37:17 +01:00
odhcp6c: update to Git HEAD (2025-12-29)
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
8abb45065f5e dhcpv6: omit IA_NA on Request
988d5fb306b3 dhcpv6: dhcpv6_send: convert whitespaces to tabs
5e1ab3bc1be8 ra: convert if block to switch
2e6682bfcaff odhcp6c: do cleanup at exit
610e4bddb8d7 config: fix potential memory leaks in error paths
bfd7597cada1 all: add log helpers
0bb93c26d14b dhcpv6: clarifying comments
65f9ee25e5eb dhcpv6: offload FQDN construction to init_dhcpv6
48dbd38122e4 dhcpv6: migrate dhcpv6_response_is_valid to switch case
9a4d6fe802...8abb45065f
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
5578eb69c2
commit
fb15ef4b23
2 changed files with 5 additions and 5 deletions
|
|
@ -12,9 +12,9 @@ PKG_RELEASE:=1
|
|||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL=$(PROJECT_GIT)/project/odhcp6c.git
|
||||
PKG_SOURCE_DATE:=2025-12-18
|
||||
PKG_SOURCE_VERSION:=9a4d6fe802d21e4fc1b84f7d55b5c3c23e71d6ba
|
||||
PKG_MIRROR_HASH:=0be95faccad6b4c9107fc7819526f11b59eedc09454c8dcb0435450ff3afbf77
|
||||
PKG_SOURCE_DATE:=2025-12-29
|
||||
PKG_SOURCE_VERSION:=8abb45065f5ef9d176efa6bd151a1209b05852c4
|
||||
PKG_MIRROR_HASH:=e7ce2b3025dfc005b9fb960f53c1848c1864e026e11e336f7b017d6eb9c68cef
|
||||
|
||||
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ proto_dhcpv6_init_config() {
|
|||
proto_config_add_boolean sourcefilter
|
||||
proto_config_add_boolean keep_ra_dnslifetime
|
||||
proto_config_add_int "ra_holdoff"
|
||||
proto_config_add_boolean verbose
|
||||
proto_config_add_int 'verbose:range(0, 7)'
|
||||
proto_config_add_boolean dynamic
|
||||
}
|
||||
|
||||
|
|
@ -116,7 +116,7 @@ proto_dhcpv6_setup() {
|
|||
|
||||
[ -n "$ra_holdoff" ] && append opts "-m$ra_holdoff"
|
||||
|
||||
[ "$verbose" = "1" ] && append opts "-v"
|
||||
[ -n "$verbose" ] && append opts "-l$verbose"
|
||||
|
||||
json_for_each_item proto_dhcpv6_add_sendopts sendopts opts
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue