Skip to content

Commit

Permalink
fix: CIDR_MAX_BITS restricting to /27 instead of /25 (#5111)
Browse files Browse the repository at this point in the history
  • Loading branch information
danny6167 committed Jun 29, 2024
1 parent 466dd61 commit 844537d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/Allocations/AssignmentService.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class AssignmentService
{
public const CIDR_MAX_BITS = 27;
public const CIDR_MAX_BITS = 25;
public const CIDR_MIN_BITS = 32;
public const PORT_FLOOR = 1024;
public const PORT_CEIL = 65535;
Expand Down

0 comments on commit 844537d

Please sign in to comment.