Increased RELAY_REQUEST_MAX_HOPS from 3 to 4, in an attempt to reach more peers.

This commit is contained in:
CalDescent 2022-02-02 22:31:40 +00:00
parent 0430fc8a47
commit 6d06953a0e

View File

@ -59,7 +59,7 @@ public class ArbitraryDataFileListManager {
/** Maximum number of seconds that a file list relay request is able to exist on the network */
private static long RELAY_REQUEST_MAX_DURATION = 5000L;
/** Maximum number of hops that a file list relay request is allowed to make */
private static int RELAY_REQUEST_MAX_HOPS = 3;
private static int RELAY_REQUEST_MAX_HOPS = 4;
private ArbitraryDataFileListManager() {