configuration serialization
[oweals/gnunet.git] / src / include / gnunet_constants.h
index da408bf55e778067cf7f3d812f94dd0cb90ed013..93eec8ded22bed6e3eb1f9e90c676aa11ee54d44 100644 (file)
@@ -69,7 +69,7 @@ extern "C"
 #define GNUNET_CONSTANTS_EXEC_WAIT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 200)
 
 /**
- * After how long do we retry a service connection that was 
+ * After how long do we retry a service connection that was
  * unavailable?  Used in cases where an exponential back-off
  * seems inappropriate.
  */
@@ -97,15 +97,30 @@ extern "C"
  */
 #define GNUNET_CONSTANTS_IDLE_LOAD_THRESHOLD 70
 
+/**
+ * For how long do we allow unused bandwidth
+ * from the past to carry over into the future? (in seconds)
+ */
+#define GNUNET_CONSTANTS_MAX_BANDWIDTH_CARRY_S 5
+
+
+/**
+ * After how long do we expire an address in a HELLO that we just
+ * validated?  This value is also used for our own addresses when we
+ * create a HELLO.
+ */
+#define GNUNET_CONSTANTS_HELLO_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
+
+
 /**
  * Size of the 'struct EncryptedMessage' of the core (which
- * is the per-message overhead of the core).  
+ * is the per-message overhead of the core).
  */
-#define GNUNET_CONSTANTS_CORE_SIZE_ENCRYPTED_MESSAGE (24 + sizeof (GNUNET_HashCode))
+#define GNUNET_CONSTANTS_CORE_SIZE_ENCRYPTED_MESSAGE (24 + sizeof (struct GNUNET_HashCode))
 
 /**
- * Size of the 'struct OutboundMessage' of the transport 
- * (which, in combination with the 
+ * Size of the 'struct OutboundMessage' of the transport
+ * (which, in combination with the
  * GNUNET_CONSTANTS_CORE_SIZE_ENCRYPTED_MESSAGE) defines
  * the headers that must be pre-pendable to all GNUnet
  * messages.  Taking GNUNET_SERVER_MAX_MESSAGE_SIZE
@@ -123,11 +138,18 @@ extern "C"
  *
  * Could theoretically be 64k minus (GNUNET_CONSTANTS_CORE_SIZE_ENCRYPTED_MESSAGE +
  * GNUNET_CONSTANTS_TRANSPORT_SIZE_OUTBOUND_MESSAGE), but we're going
- * to be more conservative for now. 
+ * to be more conservative for now.
  */
 #define GNUNET_CONSTANTS_MAX_ENCRYPTED_MESSAGE_SIZE (63 * 1024)
 
 
+/**
+ * K-value that must be used for the bloom filters in 'GET'
+ * queries.
+ */
+#define GNUNET_CONSTANTS_BLOOMFILTER_K 16
+
+
 
 #if 0                           /* keep Emacsens' auto-indent happy */
 {