beegfs/meta/source/net/message/fsck/AdjustChunkPermissionsMsgEx.h
2025-08-10 01:34:16 +02:00

18 lines
533 B
C++

#pragma once
#include <common/net/message/fsck/AdjustChunkPermissionsMsg.h>
#include <common/net/message/fsck/AdjustChunkPermissionsRespMsg.h>
#include <common/storage/PathInfo.h>
#include <common/storage/striping/StripePattern.h>
class AdjustChunkPermissionsMsgEx : public AdjustChunkPermissionsMsg
{
public:
virtual bool processIncoming(ResponseContext& ctx);
private:
bool sendSetAttrMsg(const std::string& entryID, unsigned userID, unsigned groupID,
PathInfo* pathInfo, StripePattern* pattern);
};