| 30 | #include "context/FsInfo.h" |
| 31 | |
| 32 | FsInfo::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 | |
| 54 | FsInfo::~FsInfo() |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected