summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-04-10 11:40:10 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-04-10 11:40:10 +0200
commit98bfb4f6aa76aa3a5242fe2db3d1fabc69a5bdae (patch)
treefc0de056cc219cb91d926ea632dd0d9532657480 /config.h
parente269892480767b089cb999e87cc05becfdef26d2 (diff)
downloadpgfuse-98bfb4f6aa76aa3a5242fe2db3d1fabc69a5bdae.tar.gz
pgfuse-98bfb4f6aa76aa3a5242fe2db3d1fabc69a5bdae.tar.bz2
more cleanup
fixed lost connections after fuse reinitializations
Diffstat (limited to 'config.h')
-rw-r--r--config.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..8795ef6
--- /dev/null
+++ b/config.h
@@ -0,0 +1,33 @@
+/*
+ Copyright (C) 2012 Andreas Baumann <abaumann@yahoo.com>
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef CONFIG_H
+#define CONFIG_H
+
+/* standard block size, rather a simulation currently */
+#define STANDARD_BLOCK_SIZE 512
+
+/* maximal number of open files, limited currently due to a too simple
+ * hash table implementation of open file handles */
+#define MAX_NOF_OPEN_FILES 256
+
+/* maximum size of a file, rather arbitrary, 2^31 is a current implementation
+ * limit, before fixing this, the storing and efficiency has to be rethought
+ * anyway.. */
+#define MAX_FILE_SIZE 65535
+
+#endif