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

Skip to content
Snippets Groups Projects
Commit 003dc378 authored by zzz's avatar zzz
Browse files

merge of 'bde6736c06f94ff24285aeff0a64ec7dc3a52a4b'

     and 'f4b18bbf4329a48a182a57db594a58d4a32a9da7'
parents a5f3220d 847a441d
No related branches found
No related tags found
No related merge requests found
...@@ -215,8 +215,12 @@ public class RouterAddress extends DataStructureImpl { ...@@ -215,8 +215,12 @@ public class RouterAddress extends DataStructureImpl {
_cost = (int) DataHelper.readLong(in, 1); _cost = (int) DataHelper.readLong(in, 1);
//_expiration = DataHelper.readDate(in); //_expiration = DataHelper.readDate(in);
DataHelper.readDate(in); DataHelper.readDate(in);
_transportStyle = DataHelper.readString(in);
// reduce Object proliferation // reduce Object proliferation
_transportStyle = DataHelper.readString(in).intern(); if (_transportStyle.equals("SSU"))
_transportStyle = "SSU";
else if (_transportStyle.equals("NTCP"))
_transportStyle = "NTCP";
DataHelper.readProperties(in, _options); DataHelper.readProperties(in, _options);
} }
......
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