Skip to content

Commit

Permalink
Update to better defaults after the recent R patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wes0617 committed Feb 1, 2023
1 parent 81d956d commit 7c4a699
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions configs/session.crew.Example Crew.json_EXAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
6 changes: 3 additions & 3 deletions configs/session.dynamic.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},

Expand Down
6 changes: 3 additions & 3 deletions configs/session.lan.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},

Expand Down
6 changes: 3 additions & 3 deletions configs/session.solo.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},

Expand Down
4 changes: 2 additions & 2 deletions securosurf/information.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7c4a699

Please sign in to comment.