Distribution_Service/Server/PortService/Routing.h

13 lines
220 B
C
Raw Permalink Normal View History

2025-11-11 18:09:51 +08:00
#ifndef DISTRIBUTION_SERVICE_ROUTING_H
#define DISTRIBUTION_SERVICE_ROUTING_H
2025-12-03 18:08:23 +08:00
#include "ByteTool.h"
#include "DataPacket.h"
2025-11-11 18:09:51 +08:00
class Routing {
2025-12-03 18:08:23 +08:00
public:
static void RoutingFunction(const DataPacket& packet);
2025-11-11 18:09:51 +08:00
};
#endif