X-Git-Url: https://git.proxmox.com/?p=pve-common.git;a=blobdiff_plain;f=src%2FPVE%2FJSONSchema.pm;h=36a2de994e35cf1c7f8f4655a4f13c0334e6f5fc;hp=e1485ff161f13343c5ca0768e4a575374c6a1da0;hb=d07b7084c429c31fba8277a1d9e7624f812c6e2e;hpb=e43b3a0f5085d1fccd5dc3e82d5030613fbd644a diff --git a/src/PVE/JSONSchema.pm b/src/PVE/JSONSchema.pm index e1485ff..36a2de9 100644 --- a/src/PVE/JSONSchema.pm +++ b/src/PVE/JSONSchema.pm @@ -271,9 +271,23 @@ sub pve_verify_iface { return $id; } +# general addresses by name or IP +register_format('address', \&pve_verify_address); +sub pve_verify_address { + my ($addr, $noerr) = @_; + + if (!(pve_verify_ip($addr, 1) || + pve_verify_dns_name($addr, 1))) + { + return undef if $noerr; + die "value does not look like a valid address: $addr\n"; + } + return $addr; +} + register_standard_option('spice-proxy', { description => "SPICE proxy server. This can be used by the client to specify the proxy server. All nodes in a cluster runs 'spiceproxy', so it is up to the client to choose one. By default, we return the node where the VM is currently running. As resonable setting is to use same node you use to connect to the API (This is window.location.hostname for the JS GUI).", - type => 'string', format => 'dns-name', + type => 'string', format => 'address', }); register_standard_option('remote-viewer-config', {