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

Method check_node_clean

libcppcryptfs/filename/longfilenamecache.cpp:98–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98bool LongFilenameCache::check_node_clean(LongFilenameCacheNode *node, const wstring& path)
99{
100#ifndef LFN_CACHE_NOTTL
101
102 if (GetTickCount64() - node->m_timestap < LFN_CACHE_TTL)
103 return true;
104
105 return false;
106#else
107 return true;
108#endif
109}
110
111
112

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected