diff --git a/core/java/src/net/i2p/util/PortMapper.java b/core/java/src/net/i2p/util/PortMapper.java index 2ad1cf112..661904f20 100644 --- a/core/java/src/net/i2p/util/PortMapper.java +++ b/core/java/src/net/i2p/util/PortMapper.java @@ -376,6 +376,13 @@ public class PortMapper { continue; out.write("" + s + "" + convertWildcard(ia.getHostName(), DEFAULT_HOST) + "" + ia.getPort() + '\n'); } + if (!_eepsites.isEmpty()) { + out.write(" EepsiteURL\n"); + for (String url : _eepsites) { + String s = url.startsWith("https://") ? SVC_HTTPS_EEPSITE : SVC_EEPSITE; + out.write("" + s + "" + url + "\n"); + } + } out.write("\n"); } }