aboutsummaryrefslogtreecommitdiff
path: root/contrib/patches/transport_ats_years.diff
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-05-19 14:43:13 +0000
committerNils Gillmann <ng0@n0.is>2018-05-19 14:43:13 +0000
commit6ab60d4920bb3199aee8cd872b930e9e3e808ba7 (patch)
tree3d761dbf8793a1d2422fbd14667255c7e0292ea4 /contrib/patches/transport_ats_years.diff
parentc2f27dfe8218545c327ab49d225a49910347c5c6 (diff)
downloadgnunet-6ab60d4920bb3199aee8cd872b930e9e3e808ba7.tar.gz
gnunet-6ab60d4920bb3199aee8cd872b930e9e3e808ba7.zip
Restructure contrib folder.
contrib/pogen.sh -> bin/pogen.sh bootstrap: Use new pogen location and execute it. contrib/openvpn-tap32: Move to contrib/3rdparty/Windows/openvpn-tap32. contrib/gnunet-logo*: Move to contrib/branding/logo/ Delete old patches in contrib, predating git. Move buildbot data to contrib/ci/buildbot, move docker data to contrib/ci/docker. Create contrib/conf and populate it with config files found in contrib and bin. Move gns related data to contrib/gns. delete contrib/repeat.sh Move contrib/log.php into contrib/web/log.php. Create folder contrib/scripts and use it for most scripts in contrib. Remove trailing whitespace in doc/Makefile.am Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'contrib/patches/transport_ats_years.diff')
-rw-r--r--contrib/patches/transport_ats_years.diff132
1 files changed, 132 insertions, 0 deletions
diff --git a/contrib/patches/transport_ats_years.diff b/contrib/patches/transport_ats_years.diff
new file mode 100644
index 000000000..f48c9555d
--- /dev/null
+++ b/contrib/patches/transport_ats_years.diff
@@ -0,0 +1,132 @@
1Index: src/ats/ats_api_scheduling.c
2===================================================================
3--- src/ats/ats_api_scheduling.c (revision 29617)
4+++ src/ats/ats_api_scheduling.c (working copy)
5@@ -28,7 +28,7 @@
6 #include "ats.h"
7
8
9-#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
10+#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 1)
11
12 #define NOT_FOUND 0
13
14Index: src/ats/gnunet-service-ats-solver_proportional.c
15===================================================================
16--- src/ats/gnunet-service-ats-solver_proportional.c (revision 29617)
17+++ src/ats/gnunet-service-ats-solver_proportional.c (working copy)
18@@ -205,12 +205,12 @@
19 *
20 */
21
22-#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
23+#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
24 #define PREF_AGING_FACTOR 0.95
25
26 #define DEFAULT_REL_PREFERENCE 1.0
27 #define DEFAULT_ABS_PREFERENCE 0.0
28-#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
29+#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
30
31 /**
32 * A handle for the proportional solver
33Index: src/ats/gnunet-service-ats_normalization.h
34===================================================================
35--- src/ats/gnunet-service-ats_normalization.h (revision 29617)
36+++ src/ats/gnunet-service-ats_normalization.h (working copy)
37@@ -27,7 +27,7 @@
38 #include "platform.h"
39 #include "gnunet_ats_service.h"
40
41-#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
42+#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
43 #define PREF_AGING_FACTOR 0.95
44 #define PREF_EPSILON 0.1
45
46Index: src/include/gnunet_constants.h
47===================================================================
48--- src/include/gnunet_constants.h (revision 29617)
49+++ src/include/gnunet_constants.h (working copy)
50@@ -49,7 +49,7 @@
51 * After how long do we consider a connection to a peer dead
52 * if we don't receive messages from the peer?
53 */
54-#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
55+#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 5)
56
57 /**
58 * How long do we delay reading more from a peer after a quota violation?
59@@ -61,7 +61,7 @@
60 * even if we assume that the service commonly does not
61 * respond instantly (DNS, Database, etc.).
62 */
63-#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
64+#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
65
66 /**
67 * How long do we delay messages to get larger packet sizes (CORKing)?
68Index: src/transport/gnunet-service-transport_neighbours.c
69===================================================================
70--- src/transport/gnunet-service-transport_neighbours.c (revision 29617)
71+++ src/transport/gnunet-service-transport_neighbours.c (working copy)
72@@ -65,7 +65,7 @@
73 * send 3 keepalives in each interval, so 3 messages would need to be
74 * lost in a row for a disconnect).
75 */
76-#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
77+#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 100)
78
79 /**
80 * How long are we willing to wait for a response from ATS before timing out?
81Index: src/transport/gnunet-service-transport_validation.c
82===================================================================
83--- src/transport/gnunet-service-transport_validation.c (revision 29617)
84+++ src/transport/gnunet-service-transport_validation.c (working copy)
85@@ -42,7 +42,7 @@
86 * OTOH, we don't want to spend too much time generating PONG signatures,
87 * so they must have some lifetime to reduce our CPU usage.
88 */
89-#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
90+#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
91
92 /**
93 * After how long do we expire an address in a HELLO that we just
94@@ -57,7 +57,7 @@
95 * we cannot validate (because after this time we can destroy the
96 * validation record).
97 */
98-#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
99+#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
100
101 /**
102 * How often do we PING an address that we have successfully validated
103@@ -64,17 +64,17 @@
104 * in the past but are not actively using? Should be (significantly)
105 * smaller than HELLO_ADDRESS_EXPIRATION.
106 */
107-#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
108+#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
109
110 /**
111 * How often do we PING an address that we are currently using?
112 */
113-#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
114+#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 2)
115
116 /**
117 * How much delay is acceptable for sending the PING or PONG?
118 */
119-#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
120+#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
121
122 /**
123 * Size of the validation map hashmap.
124@@ -807,7 +807,7 @@
125 */
126
127 validation_next = GNUNET_TIME_absolute_get();
128- validation_delay.rel_value_us = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value_us) / (max_fds / 2);
129+ validation_delay.rel_value_us = GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us;
130 validations_fast_start_threshold = (max_fds / 2);
131 validations_running = 0;
132 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Validation uses a fast start threshold of %u connections and a delay between of %s\n ",