diff --git a/cspell.json b/cspell.json index 112a5e5..a091af5 100644 --- a/cspell.json +++ b/cspell.json @@ -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", @@ -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" ] } diff --git a/src/routes/qos.rs b/src/routes/qos.rs index 230192a..beb6ead 100644 --- a/src/routes/qos.rs +++ b/src/routes/qos.rs @@ -38,7 +38,7 @@ pub struct QosQuery { /// /// `query` The query string from the client pub async fn qos(Query(query): Query) -> 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; diff --git a/src/session/models/game_manager.rs b/src/session/models/game_manager.rs index 0363e99..7a7adf5 100644 --- a/src/session/models/game_manager.rs +++ b/src/session/models/game_manager.rs @@ -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 diff --git a/src/session/routes/auth.rs b/src/session/routes/auth.rs index 493bb68..fe427ba 100644 --- a/src/session/routes/auth.rs +++ b/src/session/routes/auth.rs @@ -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()