Files
beegfs/storage/source/net/message/storage/attribs/GetChunkFileAttribsMsgEx.h
2025-08-10 01:34:16 +02:00

16 lines
356 B
C++

#pragma once
#include <common/net/message/storage/attribs/GetChunkFileAttribsMsg.h>
class StorageTarget;
class GetChunkFileAttribsMsgEx : public GetChunkFileAttribsMsg
{
public:
virtual bool processIncoming(ResponseContext& ctx);
private:
int getTargetFD(const StorageTarget& target, ResponseContext& ctx, bool* outResponseSent);
};