From c8507f711fd44ac68a4ff43b0aec4599e37cefd9 Mon Sep 17 00:00:00 2001 From: Test_User Date: Sun, 9 Jun 2024 13:28:33 -0400 Subject: Explicitly tell server about the server about the version, mention InspIRCd v2 compatability in README.md --- README.md | 5 ++--- server_network.c | 1 + 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9ebef00..c38ee9a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # HaxServ, a public domain chaotic pseudoserver for InspIRCd ## Features -* Links with a 1205 (InspIRCd v3) uplink server with GnuTLS +* Links with a 1202/1205 (InspIRCd v2/InspIRCd v3) uplink server with GnuTLS * Accepts one local client connection (not a bouncer yet) * Lets network operators wreck havoc (e.g. inject raw S2S commands) @@ -22,5 +22,4 @@ |`kill_old`|Kills connections older than #1, and OperServ because OperServ is wrong| |`clear`|Clears a channel| -## Instances on public networks -* [rx](https://irc.runxiyu.org) (2 instances, `HaxServ` (this) and `VdoServ` (fork)) +## Reference [https://irc.runxiyu.org/haxserv.html](https://irc.runxiyu.org/haxserv.html) for a list of known instances on public networks diff --git a/server_network.c b/server_network.c index 7ce3300..b36fa47 100644 --- a/server_network.c +++ b/server_network.c @@ -936,6 +936,7 @@ int initservernetwork(void) { } // probably inefficient to be calling SSL_write this frequently, but also less effort + SEND(STRING("CAPAB START 1202\nCAPAB END\n")); SEND(STRING("SERVER ")); SEND(server_name); SEND(STRING(" ")); -- cgit v1.2.3