increase allowed spiceport range

by using the new spice_port_range sub from PVE::Tools

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-03-03 10:47:31 +01:00 committed by Thomas Lamprecht
parent bd8e8612d8
commit 542f4c3a03

View File

@ -808,7 +808,8 @@ sub handle_spice_proxy_request {
eval {
die "Port $spiceport is not allowed" if ($spiceport < 61000 || $spiceport > 61099);
my ($minport, $maxport) = PVE::Tools::spice_port_range();
die "Port $spiceport is not allowed" if ($spiceport < $minport || $spiceport > $maxport);
my $clientip = $reqstate->{peer_host};
my $r = $reqstate->{request};