From 7c4a699bf439b3551d1eb66b0decc4eeeeaf4474 Mon Sep 17 00:00:00 2001 From: Wes Date: Wed, 1 Feb 2023 22:58:11 +0100 Subject: [PATCH] Update to better defaults after the recent R patch. --- configs/session.crew.Example Crew.json_EXAMPLE | 6 +++--- configs/session.dynamic.json | 6 +++--- configs/session.lan.json | 6 +++--- configs/session.solo.json | 6 +++--- securosurf/information.py | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/configs/session.crew.Example Crew.json_EXAMPLE b/configs/session.crew.Example Crew.json_EXAMPLE index fa0da19..c5c9d96 100644 --- a/configs/session.crew.Example Crew.json_EXAMPLE +++ b/configs/session.crew.Example Crew.json_EXAMPLE @@ -13,12 +13,12 @@ }, "T2_throttling": { - "max_packets": 30, - "per_seconds": 60 + "max_packets": 120, + "per_seconds": 240 }, "strangers_throttling": { - "max_packets": 30, + "max_packets": 3, "per_seconds": 60 } } diff --git a/configs/session.dynamic.json b/configs/session.dynamic.json index 9456681..49e4423 100644 --- a/configs/session.dynamic.json +++ b/configs/session.dynamic.json @@ -4,12 +4,12 @@ "update_frequency": 30, "T2_throttling": { - "max_packets": 30, - "per_seconds": 60 + "max_packets": 120, + "per_seconds": 240 }, "strangers_throttling": { - "max_packets": 30, + "max_packets": 3, "per_seconds": 60 }, diff --git a/configs/session.lan.json b/configs/session.lan.json index 6899224..06c4784 100644 --- a/configs/session.lan.json +++ b/configs/session.lan.json @@ -8,12 +8,12 @@ }, "T2_throttling": { - "max_packets": 30, - "per_seconds": 60 + "max_packets": 120, + "per_seconds": 240 }, "strangers_throttling": { - "max_packets": 30, + "max_packets": 3, "per_seconds": 60 }, diff --git a/configs/session.solo.json b/configs/session.solo.json index f4d115f..f76852a 100644 --- a/configs/session.solo.json +++ b/configs/session.solo.json @@ -9,12 +9,12 @@ }, "T2_throttling": { - "max_packets": 30, - "per_seconds": 60 + "max_packets": 120, + "per_seconds": 240 }, "strangers_throttling": { - "max_packets": 30, + "max_packets": 3, "per_seconds": 60 }, diff --git a/securosurf/information.py b/securosurf/information.py index bf5b4c7..39c17e9 100644 --- a/securosurf/information.py +++ b/securosurf/information.py @@ -7,8 +7,8 @@ class CLASS: def __init__(self, root: p.Path): self.application_name: str = "SecuroSurf" - self.application_version: str = "2.1.0" - self.application_full_name: str = "SecuroSurf 2.1.0 Tinfoil Hat Edition" + self.application_version: str = "2.1.1" + self.application_full_name: str = "SecuroSurf 2.1.1 Badonkadonk Edition" self.application_ID: str = "SecuroSurf" self.application_mime: str = "application/securosurf-2"