send tasks

This commit is contained in:
2026-01-15 09:05:19 +01:00
parent 16a9537cbd
commit e68ae73a87
19 changed files with 298 additions and 28 deletions

View File

@@ -0,0 +1,15 @@
#ifndef PACKETTYPE_H
#define PACKETTYPE_H
typedef enum {
PACKET_TYPE_NONE = 0,
PACKET_TYPE_HELLO = 1,
PACKET_TYPE_TASK_ASSIGN = 2,
PACKET_TYPE_TASK_RESULT = 3,
PACKET_TYPE_STATUS_UPDATE = 4,
PACKET_TYPE_CLIENT_CAPABILITIES = 5,
PACKET_TYPE_TASK_REQUEST = 6,
PACKET_TYPE_MISSING_INFO = 7
} PacketType;
#endif