Commit Graph

127 Commits

Author SHA1 Message Date
MayaTheShy
88de6f5e28 fix: remove HMAC verification hash from sendPing to prevent packet size issues 2025-11-10 01:47:52 -05:00
MayaTheShy
ce48e1f6a0 fix: revert to sending periodic ping instead of DomainListRequest to maintain HMAC verification 2025-11-10 01:46:13 -05:00
MayaTheShy
d67fc08ed5 fix: update sendPing to include source ID and HMAC verification hash for improved packet integrity 2025-11-10 01:46:05 -05:00
MayaTheShy
b416628824 fix: send DomainListRequest instead of Ping to avoid HMAC verification issues 2025-11-10 01:44:39 -05:00
MayaTheShy
db3c08e906 fix: modify sendPing to experiment with non-sourced packets to avoid hash verification issues 2025-11-10 01:41:39 -05:00
MayaTheShy
7d7dedf494 fix: update sendPing to set source ID before sequence number for proper header resizing 2025-11-10 01:41:21 -05:00
MayaTheShy
a0a9fca81e fix: remove HMAC verification hash note from sendPing function 2025-11-10 01:37:51 -05:00
MayaTheShy
9a05701b07 fix: add debug output for destination address in sendPing function 2025-11-10 01:34:43 -05:00
MayaTheShy
5342697ea6 fix: update sendPing to prevent HMAC-MD5 verification hash from being added for null UUID connection 2025-11-10 01:31:41 -05:00
MayaTheShy
861407c043 fix: add HMAC-MD5 verification hash to ping packet using null UUID 2025-11-10 01:22:13 -05:00
MayaTheShy
fc355ec225 fix: add OpenSSL headers for HMAC and MD5 support in OverteClient 2025-11-10 01:19:59 -05:00
MayaTheShy
612112934f fix: update handleDomainListReply to correctly read node local ID in big-endian format and enhance debug output 2025-11-10 00:52:08 -05:00
MayaTheShy
4319f5f991 fix: enhance handleDomainListReply to clarify DomainList packet structure and improve debug output for UUIDs 2025-11-10 00:48:49 -05:00
MayaTheShy
c449c452b3 fix: enhance debug output for local ID in handleDomainListReply 2025-11-10 00:39:56 -05:00
MayaTheShy
1a56257349 fix: add hex dump of DomainList packet for debugging purposes 2025-11-10 00:39:47 -05:00
MayaTheShy
682c375687 fix: correct handling of domain local ID to read directly in little-endian format 2025-11-10 00:32:58 -05:00
MayaTheShy
c25ac298e7 fix: update sendDomainConnectRequest to include socket type for public and local sockets 2025-11-10 00:16:12 -05:00
MayaTheShy
007dde4670 fix: update sendDomainConnectRequest to use actual IPv4 address and port for public and local sockets 2025-11-10 00:15:20 -05:00
MayaTheShy
9087510ae9 fix: update DomainConnectRequest to use null address and port for public and local sockets 2025-11-10 00:09:04 -05:00
MayaTheShy
93214070be fix: remove socket type byte from DomainConnectRequest for public and local sockets 2025-11-10 00:08:05 -05:00
MayaTheShy
44a5dc9f42 fix: ensure DomainConnectRequest does not include source ID before local ID is assigned 2025-11-10 00:05:22 -05:00
MayaTheShy
373f153664 fix: avoid setting source ID in DomainConnectRequest before local ID is assigned 2025-11-09 23:58:59 -05:00
MayaTheShy
4c54cc2c11 feat: implement non-blocking UDP packet reception in OverteClient::poll method 2025-11-09 23:57:51 -05:00
MayaTheShy
a3cebfea4e feat: handle socket binding to 0.0.0.0 by using localhost address in DomainConnectRequest 2025-11-09 23:55:21 -05:00
MayaTheShy
2cd0fb5cfd feat: bind UDP socket to any local address/port and log local address in DomainConnectRequest 2025-11-09 23:53:42 -05:00
MayaTheShy
f481fde096 feat: add debug logging for ping packet in sendPing method 2025-11-09 23:49:38 -05:00
MayaTheShy
db37c654c5 feat: add logging for periodic ping in OverteClient poll method 2025-11-09 23:43:31 -05:00
MayaTheShy
216edf57f1 feat: implement handlePing method to process Ping packets and send PingReply 2025-11-09 23:40:07 -05:00
MayaTheShy
b07d8b30dd feat: implement handling of Ping packets in domain packet parsing 2025-11-09 23:39:50 -05:00
MayaTheShy
c7c49af638 feat: implement sendACK method for sending acknowledgment packets in domain communication 2025-11-09 23:36:26 -05:00
MayaTheShy
737f2fa3b5 feat: enhance domain packet parsing to handle control packets and send ACK for reliable packets 2025-11-09 23:30:47 -05:00
MayaTheShy
d88cdf611a feat: update domain handshake process and system info format to match official client 2025-11-09 23:28:41 -05:00
MayaTheShy
f22e95e1b1 feat: update Avatar Mixer connection logic to use known address and correct node type for clients 2025-11-09 23:11:38 -05:00
MayaTheShy
6ad9f0e1fb feat: periodically send AvatarQuery every 5 seconds for avatar updates 2025-11-09 23:05:40 -05:00
MayaTheShy
c6825d0b20 feat: send AvatarQuery to request all avatars in the domain upon domain list reply 2025-11-09 23:05:29 -05:00
MayaTheShy
8b66f4cf53 feat: implement sendAvatarQuery to request all avatars from Avatar Mixer 2025-11-09 23:05:24 -05:00
MayaTheShy
391b760db5 feat: enhance packet logging by including source address and port in received domain packet logs 2025-11-09 23:04:54 -05:00
MayaTheShy
a727af0f8a feat: enhance logging for AvatarIdentity and AvatarData packet sending with version details 2025-11-09 23:02:08 -05:00
MayaTheShy
2fa3748acb feat: update AvatarIdentity and AvatarData packet creation to use correct packet version 2025-11-09 23:00:34 -05:00
MayaTheShy
00d71b2074 feat: send avatar data to Avatar Mixer every 100ms when connected 2025-11-09 22:48:58 -05:00
MayaTheShy
4ff701b31b feat: add temporary hack to connect to Avatar Mixer using known port if not found 2025-11-09 22:47:45 -05:00
MayaTheShy
7b32381c8b feat: implement Avatar Mixer protocol with identity and data sending functions 2025-11-09 22:45:00 -05:00
MayaTheShy
8480f0b276 feat: enhance packet handling by adding support for AvatarMixer and related data processing 2025-11-09 22:44:13 -05:00
MayaTheShy
9bfe3ac699 feat: enhance EntityQuery process by dynamically setting EntityServer address and port 2025-11-09 22:34:11 -05:00
MayaTheShy
e27b1f3d66 feat: update domain list handling to improve EntityServer query process 2025-11-09 22:33:08 -05:00
MayaTheShy
3bc9c49551 feat: enhance domain list handling by interpreting potential count fields and updating request logic 2025-11-09 22:24:28 -05:00
MayaTheShy
6675b4c6bc feat: update EntityQuery broadcasting to discover EntityServer with a defined port range 2025-11-09 22:17:40 -05:00
MayaTheShy
7598c1a4ad feat: update EntityServer discovery method to broadcast EntityQuery to common ports 2025-11-09 22:07:09 -05:00
MayaTheShy
f2daa036d4 feat: add logging for potential count fields in domain list reply handling 2025-11-09 22:04:49 -05:00
MayaTheShy
67e69489d6 feat: implement fallback to hardcoded EntityServer port 48247 in domain list reply handling 2025-11-09 22:00:01 -05:00