1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-30 15:13:57 +00:00

1. Added MeshCommand_HostInfo command

2. Fixed compiler warnings
This commit is contained in:
Bryan Roe
2021-08-10 16:41:22 -07:00
parent 75a0ae9817
commit 841642dec4
4 changed files with 20 additions and 6 deletions

View File

@@ -119,7 +119,9 @@ typedef enum MeshCommands_Binary
MeshCommand_AgentUpdate = 13, // Indicate the start and end of the mesh agent binary transfer
MeshCommand_AgentUpdateBlock = 14, // Part of the mesh agent sent from the server to the agent, confirmation/flowcontrol from agent to server
MeshCommand_AgentTag = 15, // Send the mesh agent tag to the server
MeshCommand_CoreOk = 16 // Sent by the server to indicate the meshcore is ok
MeshCommand_CoreOk = 16, // Sent by the server to indicate the meshcore is ok
MeshCommand_HostInfo = 31, // Host OS and CPU Architecture
} MeshCommands_Binary;
#pragma pack(push,1)