Transport: Add 8080 to ports list

as suggested by drzed
This commit is contained in:
zzz
2023-01-15 09:02:35 -05:00
parent d6891d4b7a
commit a4220f7bc6

View File

@ -319,6 +319,7 @@ public abstract class TransportUtil {
port != 6697 && // IRC+TLS
(!(port >= 7650 && port <= 7668)) && // standard I2P range
port != 7070 && // i2pd console
port != 8080 && // web server
port != 9001 && // Tor
port != 9030 && // Tor
port != 9050 && // Tor
@ -334,7 +335,7 @@ public abstract class TransportUtil {
*/
public static void logInvalidPort(Log log, String transportStyle, int port) {
log.error("Specified " + transportStyle + " port " + port + " is not valid, selecting a new port");
log.error("Invalid ports are: 0-1023, 1719, 1720, 1900, 2049, 2827, 3659, 4045, 4444, 4445, 5060, 5061, 6000, 6665-6669, 6697, 7650-7668, 7070, 9001, 9030, 9050, 9100, 9150, 31000, 32000, 65536+");
log.error("Invalid ports are: 0-1023, 1719, 1720, 1900, 2049, 2827, 3659, 4045, 4444, 4445, 5060, 5061, 6000, 6665-6669, 6697, 7650-7668, 7070, 8080, 9001, 9030, 9050, 9100, 9150, 31000, 32000, 65536+");
}
/**