Skip to content

Commit

Permalink
chore: spelling corrections and whitelisting
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtread committed Oct 13, 2024
1 parent 2911b1e commit e807e0e
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 4 deletions.
72 changes: 71 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,56 @@
"accountcountry",
"Appender",
"appenders",
"Asari",
"Batarian",
"Bioware",
"bitflags",
"blazesdkbuilddate",
"blazesdkversion",
"blazeuserid",
"BSDK",
"BTIM",
"canageup",
"canonicalize",
"CDAT",
"chrono",
"clientlocale",
"clientname",
"clientplatform",
"clientskuid",
"clienttype",
"clientversion",
"CLNT",
"cntx",
"codegen",
"connectionprofile",
"cscompletion",
"CSKU",
"csreward",
"cstimestamps",
"Darkhorse",
"DARKHORSECOMIC",
"Dataless",
"Deque",
"dirtysdkversion",
"displayname",
"Drell",
"embeddy",
"errorcode",
"errormessage",
"EXTENDEDCUT",
"extid",
"exttype",
"Fembot",
"firetype",
"flate",
"formatdoc",
"fulllogin",
"galaxyatwar",
"galaxyatwargetratings",
"GAMEPLAY",
"gname",
"GOBIG",
"gosredirector",
"gossjcprod",
"gostelemetry",
Expand All @@ -32,27 +63,66 @@
"IITO",
"indoc",
"insertable",
"isfirstlogin",
"isoflegalcontactage",
"istrial",
"Jacobtread",
"Jeeze",
"Krogan",
"lastauthenticated",
"lastlogindatetime",
"leaderboards",
"legaldochost",
"masseffect",
"MIGRATABLE",
"msid",
"needslegaldoc",
"nessicary",
"norun",
"numinterfaces",
"numprobes",
"oneshot",
"Passwordless",
"pclogintoken",
"pcwdjt",
"personadetails",
"personaid",
"phong",
"playersyncservice",
"privacypolicyuri",
"probesize",
"PROTHEAN",
"proxying",
"qosip",
"qosport",
"qtype",
"Quarian",
"redirector",
"repr",
"reqsecret",
"requestid",
"reqwest",
"rngs",
"Salarian",
"Seedable",
"serverinstancerequest",
"sessioninfo",
"sessionkey",
"signtool",
"Singleplayer",
"sname",
"Stringifier",
"SVCN",
"termsofserviceuri",
"toshost",
"tosuri",
"Turian",
"Unpadded",
"upserting"
"upserting",
"userid",
"Volus",
"Vorcha",
"webprivacy",
"webterms"
]
}
2 changes: 1 addition & 1 deletion src/routes/qos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub struct QosQuery {
///
/// `query` The query string from the client
pub async fn qos(Query(query): Query<QosQuery>) -> Xml {
debug!("Recieved QOS query: (Port: {})", query.port);
debug!("Received QOS query: (Port: {})", query.port);

/// Port for the local Quality of Service server
const QOS_PORT: u16 = 42130;
Expand Down
3 changes: 2 additions & 1 deletion src/session/models/game_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,8 @@ impl TdfSerialize for GameSetupResponse<'_> {
// Host network qos data
w.tag_ref(b"NQOS", &host.net.qos);

// Flag to indicate that this game is not resettable. This applies only to the CLIENT_SERVER_DEDICATED topology. The game will be prevented from ever going into the RESETABlE state.
// Flag to indicate that this game is not resettable. This applies only to the CLIENT_SERVER_DEDICATED topology.
// The game will be prevented from ever going into the RESETTABlE state.
w.tag_bool(b"NRES", false);

// Game network topology
Expand Down
2 changes: 1 addition & 1 deletion src/session/routes/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub async fn handle_login(
.await?
.ok_or(AuthenticationError::InvalidUser)?;

// Get the attached password (Passwordless accounts fail as invalid)
// Get the attached password (Accounts without a password will fail as invalid)
let player_password: &str = player
.password
.as_ref()
Expand Down

0 comments on commit e807e0e

Please sign in to comment.