18 lines
533 B
C++
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);
|
|
};
|
|
|