add dht to build system
[oweals/gnunet.git] / HACKING
diff --git a/HACKING b/HACKING
index 5008b49ce2507502015486837f61517d4504094c..6b5dfb0019308bae38803463418358e943f93930 100644 (file)
--- a/HACKING
+++ b/HACKING
@@ -6,7 +6,7 @@ include files:
 - _plugin: plugin definition
 - _protocol: structs used in network protocol
 - exceptions:
-  * GNUNET_config.h      --- generated // FIXME: decapitalize
+  * gnunet_config.h      --- generated
   * platform.h           --- first included
   * plibc.h              --- external library
   * gnunet_common.h      --- fundamental routines
@@ -66,3 +66,17 @@ gnunet-service-statistics
 gnunet-service-dv
 gnunet-service-dht
 gnunet-service-fs (or just lib?)
+
+
+
+
+Coding style:
+- GNU guidelines apply
+- declare only one variable per line, so 
+
+  int i;
+  int j;
+
+  instead of
+
+  int i,j;