We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0755e4c commit f7b124cCopy full SHA for f7b124c
core/src/com/biglybt/core/peermanager/messaging/bittorrent/BTHandshake.java
@@ -87,7 +87,7 @@ public static void setFastExtensionEnabled(boolean enabled) {
87
88
private final byte[] reserved_bytes;
89
private final byte[] datahash_bytes;
90
- private final byte[] peer_id_bytes;
+ private byte[] peer_id_bytes;
91
private final byte version;
92
93
private static byte[] duplicate(byte[] b) {
@@ -130,9 +130,7 @@ private void constructBuffer() {
130
131
public byte[] getPeerId() { return peer_id_bytes; }
132
133
-
134
135
+ public void setPeerId( byte[] id ){ peer_id_bytes = id; }
136
137
// message
138
@Override
0 commit comments