dnsmasq: allow multiple macs per static lease address (#6205)

SVN-Revision: 20074
This commit is contained in:
Jo-Philipp Wich 2010-03-08 23:28:55 +00:00
parent 32885a5a05
commit 58820edbd9
1 changed files with 8 additions and 3 deletions

View File

@ -176,13 +176,18 @@ dhcp_host_add() {
config_get networkid "$cfg" networkid
[ -n "$networkid" ] && dhcp_option_add "$cfg" "$networkid"
config_get mac "$cfg" mac
[ -n "$mac" ] || return 0
config_get macs "$cfg" mac
[ -n "$macs" ] || return 0
config_get ip "$cfg" ip
[ -n "$ip" ] || return 0
append args "--dhcp-host=$mac,${networkid:+net:$networkid,}$ip${name:+,$name}"
macs=""
config_get mac "$cfg" mac
for m in $mac; do append macs "$m" ","; done
[ -n "$macs" ] || return 0
append args "--dhcp-host=$macs,${networkid:+net:$networkid,}$ip${name:+,$name}"
}
dhcp_mac_add() {