aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-08 23:09:28 +0200
committerJakob Unterwurzacher2015-09-08 23:09:28 +0200
commit80935a0e1b3848608bcc8e1e1497435801ac9940 (patch)
tree020eff5e8949dafaf6fcc3ccfacb1794b8eeac3a /main.go
parentbfdbbbf8b476c810ac9d5c47a7fa6f7cc8904a55 (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.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.go b/main.go
index 2a140ab..624b2f5 100644
--- a/main.go
+++ b/main.go
@@ -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