summaryrefslogtreecommitdiff
path: root/include/pso/TPlyClientConfig.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-09 18:09:14 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-09 18:09:14 -0400
commitdacfbade1476d79bf7484b8817592d61ba62ee2f (patch)
treeebf296e1e152fcfc09aeab9488f0d57e2b6211e7 /include/pso/TPlyClientConfig.h
parentb80218a8c1fafb174e3f05c0b51c61005531bf05 (diff)
TProtocol: Start adding, and matching more command handlers
Also found out alot more assumptions I had were wrong.
Diffstat (limited to 'include/pso/TPlyClientConfig.h')
-rw-r--r--include/pso/TPlyClientConfig.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/pso/TPlyClientConfig.h b/include/pso/TPlyClientConfig.h
index 8876640..b800a5d 100644
--- a/include/pso/TPlyClientConfig.h
+++ b/include/pso/TPlyClientConfig.h
@@ -8,11 +8,13 @@
class TPlyClientConfig {
public:
public:
- u32 m_magic[2];
- u32 m_flags;
- u32 m_proxy_dst_addr;
- u16 m_proxy_dst_port;
- u8 m_mbr_0xe[14];
+ struct {
+ u32 magic[2];
+ u32 flags;
+ u32 proxy_dst_addr;
+ u16 proxy_dst_port;
+ u8 mbr_0xe[14];
+ } config;
};
#endif