Skip to content

Commit

Permalink
Allocations: Correct CIDR_MAX_BITS to match the expected limit
Browse files Browse the repository at this point in the history
  • Loading branch information
danny6167 committed May 31, 2024
1 parent 371c7a6 commit 4b94567
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 4b94567

Please sign in to comment.