Skip to content

Commit 948b1b5

Browse files
committed
odhcp6c: update to 25.12 Git HEAD (2025-12-29)
699cc61568b6 dhcpv6: omit IA_NA on Request 8774d3c0ec9c dhcpv6: dhcpv6_send: convert whitespaces to tabs 11abe3790431 ra: convert if block to switch c05b803d38e9 odhcp6c: do cleanup at exit 6aa4e491a869 config: fix potential memory leaks in error paths 235cdc97d73b all: add log helpers 6e3272d609d3 dhcpv6: clarifying comments 04aea4e3f870 dhcpv6: offload FQDN construction to init_dhcpv6 449ce8374275 dhcpv6: migrate dhcpv6_response_is_valid to switch case openwrt/odhcp6c@5ab3203...699cc61 Signed-off-by: Álvaro Fernández Rojas <[email protected]>
1 parent d819a05 commit 948b1b5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package/network/ipv6/odhcp6c/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ PKG_RELEASE:=1
1212

1313
PKG_SOURCE_PROTO:=git
1414
PKG_SOURCE_URL=$(PROJECT_GIT)/project/odhcp6c.git
15-
PKG_SOURCE_DATE:=2025-12-18
16-
PKG_SOURCE_VERSION:=5ab3203875ad938ea85f6d0ceebdff113c355656
17-
PKG_MIRROR_HASH:=4de69fe364be2d302329cdc86d4d93820e73c82f00d788a536cf947076a4ded3
15+
PKG_SOURCE_DATE:=2025-12-29
16+
PKG_SOURCE_VERSION:=699cc61568b6816783d17d57dda4ef7851198528
17+
PKG_MIRROR_HASH:=e8a42c429ed83660ccc04d69e3bcbf0056d8e96e08caff0f14518150b89ec352
1818

1919
PKG_MAINTAINER:=Álvaro Fernández Rojas <[email protected]>
2020
PKG_LICENSE:=GPL-2.0

package/network/ipv6/odhcp6c/files/dhcpv6.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ proto_dhcpv6_init_config() {
4242
proto_config_add_boolean sourcefilter
4343
proto_config_add_boolean keep_ra_dnslifetime
4444
proto_config_add_int "ra_holdoff"
45-
proto_config_add_boolean verbose
45+
proto_config_add_int 'verbose:range(0, 7)'
4646
proto_config_add_boolean dynamic
4747
}
4848

@@ -116,7 +116,7 @@ proto_dhcpv6_setup() {
116116

117117
[ -n "$ra_holdoff" ] && append opts "-m$ra_holdoff"
118118

119-
[ "$verbose" = "1" ] && append opts "-v"
119+
[ -n "$verbose" ] && append opts "-l$verbose"
120120

121121
json_for_each_item proto_dhcpv6_add_sendopts sendopts opts
122122

0 commit comments

Comments
 (0)