23 lines
494 B
C++
23 lines
494 B
C++
#pragma once
|
|
|
|
#include <common/net/message/storage/lookup/FindOwnerMsg.h>
|
|
#include <common/storage/StorageDefinitions.h>
|
|
#include <common/storage/StorageErrors.h>
|
|
#include <common/toolkit/MetadataTk.h>
|
|
#include <common/Common.h>
|
|
#include <storage/MetaStore.h>
|
|
|
|
// Get the meta-data server of a file
|
|
|
|
class FindOwnerMsgEx : public FindOwnerMsg
|
|
{
|
|
public:
|
|
virtual bool processIncoming(ResponseContext& ctx);
|
|
|
|
private:
|
|
FhgfsOpsErr findOwner(EntryInfoWithDepth* outInfo);
|
|
|
|
};
|
|
|
|
|