aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-11-15 23:26:24 +0100
committerChristian Grothoff <christian@grothoff.org>2018-11-15 23:26:24 +0100
commit196a0bf9699d9ecead4b50819bd64d3174795296 (patch)
tree4d3c48c8546a45ac748ef66463edc5741bbc0fcc /src/transport/transport.h
parent84d51248d563d4187fc5414fbe795a5a4e284262 (diff)
downloadgnunet-196a0bf9699d9ecead4b50819bd64d3174795296.tar.gz
gnunet-196a0bf9699d9ecead4b50819bd64d3174795296.zip
remove dead field quota_in
Diffstat (limited to 'src/transport/transport.h')
-rw-r--r--src/transport/transport.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/transport/transport.h b/src/transport/transport.h
index c5191a5ce..129b1ce15 100644
--- a/src/transport/transport.h
+++ b/src/transport/transport.h
@@ -121,19 +121,14 @@ struct ConnectInfoMessage
121 struct GNUNET_MessageHeader header; 121 struct GNUNET_MessageHeader header;
122 122
123 /** 123 /**
124 * Identity of the new neighbour. 124 * Current outbound quota for this peer
125 */
126 struct GNUNET_PeerIdentity id;
127
128 /**
129 * Current inbound quota for this peer
130 */ 125 */
131 struct GNUNET_BANDWIDTH_Value32NBO quota_in; 126 struct GNUNET_BANDWIDTH_Value32NBO quota_out;
132 127
133 /** 128 /**
134 * Current outbound quota for this peer 129 * Identity of the new neighbour.
135 */ 130 */
136 struct GNUNET_BANDWIDTH_Value32NBO quota_out; 131 struct GNUNET_PeerIdentity id;
137}; 132};
138 133
139 134