summaryrefslogtreecommitdiff
path: root/netfs/fuse/fuseMappersImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/fuse/fuseMappersImpl.h')
-rw-r--r--netfs/fuse/fuseMappersImpl.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/netfs/fuse/fuseMappersImpl.h b/netfs/fuse/fuseMappersImpl.h
index e37874a..f97acb3 100644
--- a/netfs/fuse/fuseMappersImpl.h
+++ b/netfs/fuse/fuseMappersImpl.h
@@ -1,21 +1,19 @@
#pragma once
#include "baseMapper.h"
-#include "entries.h"
-#include "entryResolver.h"
#include <fuseMappers.h>
#include <visibility.h>
namespace NetFS::Client {
- std::string to_octal(const Ice::Int &);
- Ice::Int from_octal(const std::string &);
+ std::string toOctal(const Ice::Int &);
+ Ice::Int fromOctal(const std::string &);
class DLL_PUBLIC HideUnknownMapperImpl : public HideUnknownMapper, Mapping::BaseMapper {
public:
using BaseMapper::BaseMapper;
Mapping::Transport mapFileSystem(int uid, int gid) override;
- Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override;
+ Mapping::FileSystem mapTransport(const std::string & userName, const std::string & groupName) override;
};
class DLL_PUBLIC MaskUnknownMapperImpl : public MaskUnknownMapper, Mapping::BaseMapper {
@@ -23,6 +21,6 @@ namespace NetFS::Client {
using BaseMapper::BaseMapper;
Mapping::Transport mapFileSystem(int uid, int gid) override;
- Mapping::FileSystem mapTransport(const std::string & un, const std::string & gn) override;
+ Mapping::FileSystem mapTransport(const std::string & userName, const std::string & groupName) override;
};
}