MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / FsInfo

Method FsInfo

libcppcryptfs/context/FsInfo.cpp:32–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30#include "context/FsInfo.h"
31
32FsInfo::FsInfo()
33{
34 this->cacheTTL = 0;
35 this->caseCacheHitRatio = 0.0f;
36 this->caseInsensitive = false;
37 this->dirIvCacheHitRatio = 0.0f;
38 this->multhreaded = 0;
39 this->ioBufferSize = 0;
40 this->lfnCacheHitRatio = 0.0f;
41 this->longFileNames = false;
42 this->mountManager = false;
43 this->readOnly = false;
44 this->reverse = false;
45 this->encryptKeysInMemory = false;
46 this->cacheKeysInMemory = false;
47 this->denyOtherSessions = false;
48 this->denyServices = false;
49 this->flushAfterWrite = false;
50 this->deleteSpurriousFiles = false;
51 this->longNameMax = 0;
52}
53
54FsInfo::~FsInfo()
55{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected