aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmos <48657826+Mauler125@users.noreply.github.com>2022-03-04 02:28:22 +0100
committerAmos <48657826+Mauler125@users.noreply.github.com>2022-03-04 02:28:22 +0100
commit4cab6d7e499f3c148e21b4ae52c114d3e7f0d0d1 (patch)
tree066083591fa505cac1fafda4090ba2f68c5a4217
parent5fb1eee4725c7aa0002411eafbc0a1a94fa073b3 (diff)
downloadNorthstarLauncher-4cab6d7e499f3c148e21b4ae52c114d3e7f0d0d1.tar.gz
NorthstarLauncher-4cab6d7e499f3c148e21b4ae52c114d3e7f0d0d1.zip
Fix formatting
-rw-r--r--NorthstarDedicatedTest/igameserverdata.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/NorthstarDedicatedTest/igameserverdata.h b/NorthstarDedicatedTest/igameserverdata.h
index d6b3ba2c..c3781d46 100644
--- a/NorthstarDedicatedTest/igameserverdata.h
+++ b/NorthstarDedicatedTest/igameserverdata.h
@@ -29,21 +29,21 @@ enum class ServerDataResponseType_t : int
class CConnectedNetConsoleData
{
-public:
- SocketHandle_t m_hSocket {};
- int m_nCharsInCommandBuffer {};
- char m_pszInputCommandBuffer[MAX_NETCONSOLE_INPUT_LEN] {};
- bool m_bAuthorized {}; // Set to true after netconsole successfully authed.
- bool m_bInputOnly {}; // If set, don't send spew to this net console.
- int m_nFailedAttempts {}; // Num failed authentication attempts.
- int m_nIgnoredMessage {}; // Count how many times client ignored the no-auth message.
+ public:
+ SocketHandle_t m_hSocket{};
+ int m_nCharsInCommandBuffer{};
+ char m_pszInputCommandBuffer[MAX_NETCONSOLE_INPUT_LEN]{};
+ bool m_bAuthorized{}; // Set to true after netconsole successfully authed.
+ bool m_bInputOnly{}; // If set, don't send spew to this net console.
+ int m_nFailedAttempts{}; // Num failed authentication attempts.
+ int m_nIgnoredMessage{}; // Count how many times client ignored the no-auth message.
CConnectedNetConsoleData(SocketHandle_t hSocket = -1)
{
m_nCharsInCommandBuffer = 0;
- m_bAuthorized = false;
- m_hSocket = hSocket;
- m_bInputOnly = false;
+ m_bAuthorized = false;
+ m_hSocket = hSocket;
+ m_bInputOnly = false;
}
};