diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-10-17 19:35:45 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-10-17 19:37:36 +0200 |
| commit | 763828df499f67c1c9d669d3223bd0636ed2b185 (patch) | |
| tree | 8e7d11a20934369676fc9b6bac2fee68b2a6c7d5 /src/net.cpp | |
| parent | Merge #8939: Update implemented bips for 0.13.1 (diff) | |
| parent | My DNS seed supports filtering (diff) | |
| download | discoin-763828df499f67c1c9d669d3223bd0636ed2b185.tar.xz discoin-763828df499f67c1c9d669d3223bd0636ed2b185.zip | |
Merge #8940: Add x9 service bit support to dnsseed.bluematt.me
2449e12 My DNS seed supports filtering (Christian Decker)
ffb4713 Add x9 service bit support to dnsseed.bluematt.me (Matt Corallo)
504c72a Comment that most dnsseeds only support some service bits combos (Matt Corallo)
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 19dd04099..5f9942c9d 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1454,6 +1454,7 @@ static std::string GetDNSHost(const CDNSSeedData& data, ServiceFlags* requiredSe return data.host; } + // See chainparams.cpp, most dnsseeds only support one or two possible servicebits hostnames return strprintf("x%x.%s", *requiredServiceBits, data.host); } |