Skip to content

Commit 844537d

Browse files
authored
fix: CIDR_MAX_BITS restricting to /27 instead of /25 (pterodactyl#5111)
1 parent 466dd61 commit 844537d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/Allocations/AssignmentService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class AssignmentService
1616
{
17-
public const CIDR_MAX_BITS = 27;
17+
public const CIDR_MAX_BITS = 25;
1818
public const CIDR_MIN_BITS = 32;
1919
public const PORT_FLOOR = 1024;
2020
public const PORT_CEIL = 65535;

0 commit comments

Comments
 (0)