diff options
author | Jakob Unterwurzacher | 2015-09-08 23:09:28 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-08 23:09:28 +0200 |
commit | 80935a0e1b3848608bcc8e1e1497435801ac9940 (patch) | |
tree | 020eff5e8949dafaf6fcc3ccfacb1794b8eeac3a /main.go | |
parent | bfdbbbf8b476c810ac9d5c47a7fa6f7cc8904a55 (diff) |
Explain both frontends in readme
Also, re-enable openssl and disable debug messages so testing
gocryptfs is less painful
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -19,12 +19,13 @@ import ( ) const ( - USE_CLUEFS = false - USE_OPENSSL = false + USE_CLUEFS = false // Use cluefs or pathfs FUSE frontend + USE_OPENSSL = true // 3x speed increase PATHFS_DEBUG = false PROGRAM_NAME = "gocryptfs" + // Exit codes ERREXIT_USAGE = 1 ERREXIT_NEWFS = 2 ERREXIT_MOUNT = 3 |