From ba72cc7b6dad98daddd0bf5b9adc220983760234 Mon Sep 17 00:00:00 2001 From: Jared Shields Date: Sun, 21 Apr 2019 08:33:24 -0700 Subject: Update servlist.c Update servlist.c --- src/common/servlist.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 449f982b..641bf494 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -166,9 +166,6 @@ static const struct defaultserver def[] = /* irc. points to chat. but many users and urls still reference it */ {0, "irc.freenode.net"}, - {"Furnet", 0, 0, 0, 0, 0, TRUE}, - {0, "irc.furnet.org"}, - {"GalaxyNet", 0}, {0, "irc.galaxynet.org"}, -- cgit 1.4.1 From 87470f30a9644bc58a5a50705ba2bb5f857b93ac Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 22 Nov 2018 02:19:52 +0100 Subject: servlist: add hackint irc network - requires the use of TLS to connect on port 6697 - supports and encourages authentication via SASL PLAIN and EXTERNAL --- src/common/servlist.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 641bf494..e1088a53 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -193,6 +193,11 @@ static const struct defaultserver def[] = #endif {0, "irc.globalgamers.net"}, +#ifdef USE_OPENSSL + {"hackint", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.hackint.org"}, +#endif + {"Hashmark", 0}, {0, "irc.hashmark.net"}, -- cgit 1.4.1 From 082f2f8cebde50fa7e02763e6f0f6c07fbd0dbe3 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 18 Apr 2020 12:54:45 +0200 Subject: Remove Moznet Mozilla's Moznet no longer exists. They migrated to Matrix. --- src/common/servlist.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index e1088a53..8b718a92 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -248,9 +248,6 @@ static const struct defaultserver def[] = {"MIXXnet", 0}, {0, "irc.mixxnet.net"}, - {"Moznet", 0, 0, 0, 0, 0, TRUE}, - {0, "irc.mozilla.org"}, - {"ObsidianIRC", 0}, /* Self signed */ {0, "irc.obsidianirc.net"}, -- cgit 1.4.1 From f9adf88eca7698d19e83c8b525828efe661ac733 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 14 May 2020 23:15:14 -0700 Subject: Remove 2ch from network list It split into multiple networks; Both are very small and can't even match our modern guidelines like supporting TLS. I'll just use this as an opportunity to clean up the list a bit. Closes #2465 --- src/common/servlist.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 8b718a92..f4921a07 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -54,11 +54,6 @@ static const struct defaultserver def[] = /* Invalid hostname in cert */ {0, "irc.2600.net"}, - {"2ch", 0, 0, "iso-2022-jp", 0, 0}, - {0, "irc.2ch.sc"}, - {0, "irc.nurs.or.jp"}, - {0, "irc.juggler.jp"}, - {"AccessIRC", 0}, /* Self signed */ {0, "irc.accessirc.net"}, -- cgit 1.4.1 From 2f376953f3fd7d358aa25bf29c01d70a57d40e0c Mon Sep 17 00:00:00 2001 From: Jan Harasym Date: Mon, 1 Jun 2020 02:59:06 +0200 Subject: Add "DarkScience" to default server list. (#2474) --- src/common/servlist.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index f4921a07..e44a3f2d 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -120,6 +120,13 @@ static const struct defaultserver def[] = {"DarkMyst", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.darkmyst.org"}, +#ifdef USE_OPENSSL + {"darkscience", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.darkscience.net"}, + {0, "irc.drk.sc"}, + {0, "irc.darkscience.ws"}, +#endif + {"Dark-Tou-Net", 0}, {0, "irc.d-t-net.de"}, -- cgit 1.4.1 From a25f2381689d2c2279a0e43b33f6c0ec8305a096 Mon Sep 17 00:00:00 2001 From: Panagiotis Vasilopoulos Date: Wed, 19 May 2021 16:25:16 +0300 Subject: Add Libera Chat to network list --- src/common/servlist.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index e44a3f2d..33bd80f2 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -239,6 +239,9 @@ static const struct defaultserver def[] = /* Self signed */ {0, "irc.librairc.net"}, + {"Libera Chat", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.libera.chat"}, + #ifdef USE_OPENSSL {"LinkNet", 0}, {0, "irc.link-net.org/+7000"}, -- cgit 1.4.1 From 65edc9ad9a561e0d3aec9fde23b8c810272890d3 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 19 May 2021 21:18:58 -0400 Subject: add tilde.chat https://tilde.chat --- src/common/servlist.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 33bd80f2..e0191a7b 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -344,6 +344,9 @@ static const struct defaultserver def[] = {"Techtronix", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.techtronix.net"}, + + {"tilde.chat", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.tilde.chat"}, {"TURLINet", 0, 0, 0, 0, 0, TRUE}, /* Other servers use CP1251 and invalid certs */ -- cgit 1.4.1 From c64dda4deae6edd676dfe4145adeb4fdf11be53a Mon Sep 17 00:00:00 2001 From: Miguel Date: Mon, 24 May 2021 02:42:07 +0100 Subject: Update ptnet servers (#2205) Co-authored-by: Elias --- src/common/servlist.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index e0191a7b..d15965af 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -277,9 +277,12 @@ static const struct defaultserver def[] = {0, "irc.ponychat.net"}, {"PTNet.org", 0}, - /* Note that the network suggests ISO-8859-1 but most users ignore this */ + {0, "irc.ptnet.org"}, {0, "uevora.ptnet.org"}, - {0, "vianetworks.ptnet.org"}, + {0, "claranet.ptnet.org"}, + {0, "sonaquela.ptnet.org"}, + {0, "uc.ptnet.org"}, + {0, "ipg.ptnet.org"}, {"QuakeNet", 0, 0, 0, LOGIN_CHALLENGEAUTH}, {0, "irc.quakenet.org"}, -- cgit 1.4.1 From 6199635e7fbd220860e9b650b6d3fe63f60d4f80 Mon Sep 17 00:00:00 2001 From: Lorenzo Ancora <34890309+LorenzoAncora@users.noreply.github.com> Date: Mon, 24 May 2021 03:47:33 +0200 Subject: Add the official EU server to hackint network (#2495) --- src/common/servlist.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index d15965af..90197a5e 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -198,6 +198,7 @@ static const struct defaultserver def[] = #ifdef USE_OPENSSL {"hackint", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.hackint.org"}, + {0, "irc.eu.hackint.org"}, #endif {"Hashmark", 0}, -- cgit 1.4.1 From ad20708766c2ab11fe6eb23042883d3802d02145 Mon Sep 17 00:00:00 2001 From: Filippo Cortigiani Date: Mon, 24 May 2021 04:12:20 +0200 Subject: Added SimosNap to server list (#2349) --- src/common/servlist.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 90197a5e..de75c8b9 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -307,6 +307,9 @@ static const struct defaultserver def[] = {"Serenity-IRC", 0}, {0, "irc.serenity-irc.net"}, + {"SimosNap", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.simosnap.com"}, + {"SlashNET", 0}, /* Self signed */ {0, "irc.slashnet.org"}, -- cgit 1.4.1 From d3545f37cd5f551ed8bc0ab7b20e5c8140adc0a6 Mon Sep 17 00:00:00 2001 From: Patrick Griffis Date: Sun, 23 May 2021 21:15:43 -0500 Subject: Change default network to Libera.Chat --- src/common/servlist.c | 4 ++-- src/fe-gtk/joind.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index de75c8b9..93557f97 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -240,7 +240,7 @@ static const struct defaultserver def[] = /* Self signed */ {0, "irc.librairc.net"}, - {"Libera Chat", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {"Libera.Chat", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.libera.chat"}, #ifdef USE_OPENSSL @@ -942,7 +942,7 @@ servlist_load_defaults (void) { int i = 0, j = 0; ircnet *net = NULL; - guint def_hash = g_str_hash ("freenode"); + guint def_hash = g_str_hash ("Libera.Chat"); while (1) { diff --git a/src/fe-gtk/joind.c b/src/fe-gtk/joind.c index f1d3da50..ce3cbcae 100644 --- a/src/fe-gtk/joind.c +++ b/src/fe-gtk/joind.c @@ -247,7 +247,7 @@ joind_show_dialog (server *serv) G_CALLBACK (joind_ok_cb), serv); if (serv->network) - if (g_ascii_strcasecmp(((ircnet*)serv->network)->name, "freenode") == 0) + if (g_ascii_strcasecmp(((ircnet*)serv->network)->name, "Libera.Chat") == 0) { gtk_entry_set_text (GTK_ENTRY (entry1), "#hexchat"); } -- cgit 1.4.1 From 0a85d79dff820e97c5db1ad365f0360738875bdc Mon Sep 17 00:00:00 2001 From: cranberry Date: Mon, 24 May 2021 04:16:39 +0200 Subject: Adding LibertaCasa + TripSit to servlist.c (#2538) --- src/common/servlist.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index 93557f97..f92f2f4e 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -236,6 +236,11 @@ static const struct defaultserver def[] = {"Krstarica", 0}, {0, "irc.krstarica.com"}, +#ifdef USE_OPENSSL + {"LibertaCasa", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.liberta.casa"}, +#endif + {"LibraIRC", 0}, /* Self signed */ {0, "irc.librairc.net"}, @@ -355,6 +360,14 @@ static const struct defaultserver def[] = {"tilde.chat", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.tilde.chat"}, +#ifdef USE_OPENSSL + {"TripSit", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.tripsit.me"}, + {0, "newirc.tripsit.me"}, + {0, "coconut.tripsit.me"}, + {0, "innsbruck.tripsit.me"}, +#endif + {"TURLINet", 0, 0, 0, 0, 0, TRUE}, /* Other servers use CP1251 and invalid certs */ {0, "irc.servx.ru"}, -- cgit 1.4.1 From cdfc3b9ea93ac0f5eb3a2b16c80854931db3d881 Mon Sep 17 00:00:00 2001 From: Xandrah Date: Mon, 24 May 2021 04:46:00 +0100 Subject: Update servlist.c (#2522) * Update servlist.c Added DeltaPool to IRC Networks * Update servlist.c Updated to support SASL --- src/common/servlist.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index f92f2f4e..d65582cd 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -385,6 +385,9 @@ static const struct defaultserver def[] = {"Xertion", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.xertion.org"}, + + {"DeltaPool", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "irc.deltapool.net"}, {0,0} }; -- cgit 1.4.1 From 7f8b0a19cff46f7d27451fb9942eea5018f0c5b5 Mon Sep 17 00:00:00 2001 From: dimitrisdm <30384086+dimitrisdm@users.noreply.github.com> Date: Mon, 24 May 2021 21:26:06 +0300 Subject: Add ACN IRC Network (#2524) Website: https://irc.acn.gr Round-Robin DNS: global.acn.gr Ports: 6667 - 6697(ssl only). --- src/common/servlist.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/common/servlist.c') diff --git a/src/common/servlist.c b/src/common/servlist.c index d65582cd..79a5694b 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -58,6 +58,9 @@ static const struct defaultserver def[] = /* Self signed */ {0, "irc.accessirc.net"}, + {"ACN", 0, 0, 0, LOGIN_SASL, 0, TRUE}, + {0, "global.acn.gr"}, + {"AfterNET", 0, 0, 0, LOGIN_SASL, 0, TRUE}, {0, "irc.afternet.org"}, -- cgit 1.4.1