I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 6ad4cb09 authored by zzz's avatar zzz
Browse files

Data: No longer sort addresses in an RI by SHA256,

it's undocumented, the other router implementations don't do it,
and unnecessary since we store addresses in a List, not a Set,
as of 0.8.14 2012-05
parent 91163948
No related branches found
No related tags found
No related merge requests found
...@@ -62,9 +62,7 @@ public class RouterInfo extends DatabaseEntry { ...@@ -62,9 +62,7 @@ public class RouterInfo extends DatabaseEntry {
private RouterIdentity _identity; private RouterIdentity _identity;
private volatile long _published; private volatile long _published;
/** /**
* Addresses must be sorted by SHA256. * Save addresses in the order received so the signature works.
* When an RI is created, they are sorted in setAddresses().
* Save addresses in the order received so we need not resort.
*/ */
private final List<RouterAddress> _addresses; private final List<RouterAddress> _addresses;
/** may be null to save memory, no longer final */ /** may be null to save memory, no longer final */
...@@ -205,10 +203,6 @@ public class RouterInfo extends DatabaseEntry { ...@@ -205,10 +203,6 @@ public class RouterInfo extends DatabaseEntry {
* Specify a set of RouterAddress structures at which this router * Specify a set of RouterAddress structures at which this router
* can be contacted. * can be contacted.
* *
* Warning - Sorts the addresses here. Do not modify any address
* after calling this, as the sort order is based on the
* hash of the entire address structure.
*
* @param addresses may be null * @param addresses may be null
* @throws IllegalStateException if RouterInfo is already signed or addresses previously set * @throws IllegalStateException if RouterInfo is already signed or addresses previously set
*/ */
...@@ -217,12 +211,6 @@ public class RouterInfo extends DatabaseEntry { ...@@ -217,12 +211,6 @@ public class RouterInfo extends DatabaseEntry {
throw new IllegalStateException(); throw new IllegalStateException();
if (addresses != null) { if (addresses != null) {
_addresses.addAll(addresses); _addresses.addAll(addresses);
if (_addresses.size() > 1) {
// WARNING this sort algorithm cannot be changed, as it must be consistent
// network-wide. The signature is not checked at readin time, but only
// later, and the addresses are stored in a Set, not a List.
SortHelper.sortStructureList(_addresses);
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment