aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-09-30 08:44:32 +0000
committerNathan S. Evans <evans@in.tum.de>2010-09-30 08:44:32 +0000
commita7d1775a88d37dc55da1ef0a03de0d5ad277ebc7 (patch)
treea7b74860c2420ef2d846a1f078f4cc4a74c77672 /src/transport
parent43f689d4b50ac03747908ac64c9bc56a411c3cfe (diff)
downloadgnunet-a7d1775a88d37dc55da1ef0a03de0d5ad277ebc7.tar.gz
gnunet-a7d1775a88d37dc55da1ef0a03de0d5ad277ebc7.zip
redefinition of enum value broke compilation
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/transport_selection.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/transport/transport_selection.h b/src/transport/transport_selection.h
index f07da2682..d3a20f5bb 100644
--- a/src/transport/transport_selection.h
+++ b/src/transport/transport_selection.h
@@ -37,7 +37,7 @@
37 * 37 *
38 */ 38 */
39 39
40 40#define GNUNET_ATS_ARRAY_TERMINATOR 0
41/** 41/**
42 * Enum defining all known cost types for ATS 42 * Enum defining all known cost types for ATS
43 * Enum values are used in the GNUNET_ATS_Cost_Information struct as (key,value)-pair 43 * Enum values are used in the GNUNET_ATS_Cost_Information struct as (key,value)-pair
@@ -50,7 +50,7 @@ enum GNUNET_ATS_Cost_Type
50 * array is 0-terminated: 50 * array is 0-terminated:
51 * the last element in the array is the pair (GNUNET_ATS_ARRAY_TERMINATOR, 0) 51 * the last element in the array is the pair (GNUNET_ATS_ARRAY_TERMINATOR, 0)
52 */ 52 */
53 GNUNET_ATS_ARRAY_TERMINATOR= 0, 53 //GNUNET_ATS_ARRAY_TERMINATOR= 0,
54 54
55 /* Volume based cost in financial units to transmit data 55 /* Volume based cost in financial units to transmit data
56 * Note: this value is not bound to a specific currency or unit and only used locally 56 * Note: this value is not bound to a specific currency or unit and only used locally
@@ -199,12 +199,12 @@ struct GNUNET_ATS_Cost_Information
199 199
200enum GNUNET_ATS_Quality_Type 200enum GNUNET_ATS_Quality_Type
201{ 201{
202 /* 202 /*
203 * Quality will be passed as struct GNUNET_ATS_Quality_Information[] 203 * Quality will be passed as struct GNUNET_ATS_Quality_Information[]
204 * array is 0-terminated: 204 * array is 0-terminated:
205 * the last element in the array is the pair (GNUNET_ATS_ARRAY_TERMINATOR, 0) 205 * the last element in the array is the pair (GNUNET_ATS_ARRAY_TERMINATOR, 0)
206 */ 206 */
207 GNUNET_ATS_ARRAY_TERMINATOR = 0, 207 //GNUNET_ATS_ARRAY_TERMINATOR = 0,
208 208
209 /* Physical layer quality properties */ 209 /* Physical layer quality properties */
210 210