Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NilsIrl committed Jun 12, 2024
1 parent 8cd4ac2 commit 05d110c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ pub const BASE_URL: &str = "https://vpn.mozilla.org";
pub const V1_API: &str = "/api/v1";
pub const V2_API: &str = "/api/v2";
pub const IPV4_GATEWAY: Ipv4Addr = Ipv4Addr::new(10, 64, 0, 1);
pub const PORT_RANGES: [(u16, u16); 5] = [
pub const PORT_RANGES: [(u16, u16); 6] = [
(53, 53),
(123, 123),
(443, 443),
(4000, 33433),
(33565, 51820),
(52000, 60000),
(52001, 60000),
];
pub const EXPLOITATION_ATTEMPT_MESSAGE: &str = "INVALID DATA RETURNED FROM SERVER, THE CONTENT \
COULD HAVE BEEN TEMPERED IN AN ATTEMPT AT \
Expand Down

0 comments on commit 05d110c

Please sign in to comment.