Skip to content

Commit 7c82809

Browse files
committed
update addressbook subscriptions
Signed-off-by: R4SAS <[email protected]>
1 parent 85902b3 commit 7c82809

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

contrib/i2pd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,4 +237,4 @@ verify = true
237237
# avx = true
238238
## Force usage of CPU instructions set, even if they not found
239239
## DO NOT TOUCH that option if you really don't know what are you doing!
240-
# force = false
240+
# force = false

contrib/subscriptions.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
http://inr.i2p/export/alive-hosts.txt
1+
http://reg.i2p/hosts.txt
2+
http://identiguy.i2p/hosts.txt
23
http://stats.i2p/cgi-bin/newhosts.txt
34
http://i2p-projekt.i2p/hosts.txt

libi2pd/Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ namespace config {
213213
options_description addressbook("AddressBook options");
214214
addressbook.add_options()
215215
("addressbook.defaulturl", value<std::string>()->default_value(
216-
"http://joajgazyztfssty4w2on5oaqksz6tqoxbduy553y34mf4byv6gpq.b32.i2p/export/alive-hosts.txt"
216+
"http://shx5vqsw7usdaunyzr2qmes2fq37oumybpudrd4jjj4e4vk4uusa.b32.i2p/hosts.txt"
217217
), "AddressBook subscription URL for initial setup")
218218
("addressbook.subscriptions", value<std::string>()->default_value(""), "AddressBook subscriptions URLs, separated by comma")
219219
("addressbook.hostsfile", value<std::string>()->default_value(""), "File to dump addresses in hosts.txt format");

libi2pd_client/HTTPProxy.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@
3232
namespace i2p {
3333
namespace proxy {
3434
std::map<std::string, std::string> jumpservices = {
35-
{ "inr.i2p", "http://joajgazyztfssty4w2on5oaqksz6tqoxbduy553y34mf4byv6gpq.b32.i2p/search/?q=" },
36-
{ "stats.i2p", "http://7tbay5p4kzeekxvyvbf6v7eauazemsnnl2aoyqhg5jzpr5eke7tq.b32.i2p/cgi-bin/jump.cgi?a=" },
35+
{ "reg.i2p", "http://shx5vqsw7usdaunyzr2qmes2fq37oumybpudrd4jjj4e4vk4uusa.b32.i2p/jump/" },
36+
{ "identiguy.i2p", "http://3mzmrus2oron5fxptw7hw2puho3bnqmw2hqy7nw64dsrrjwdilva.b32.i2p/cgi-bin/query?hostname=" },
37+
{ "stats.i2p", "http://7tbay5p4kzeekxvyvbf6v7eauazemsnnl2aoyqhg5jzpr5eke7tq.b32.i2p/cgi-bin/jump.cgi?a=" },
3738
};
3839

3940
static const char *pageHead =

0 commit comments

Comments
 (0)