aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-09 13:28:33 -0400
committerTest_User <hax@andrewyu.org>2024-06-09 13:30:04 -0400
commitc8507f711fd44ac68a4ff43b0aec4599e37cefd9 (patch)
treee90ad77ff2070022d845609e46022aa9aa2e2653
parent0af4d24ffc7664ed8a0c6172bed4d90113f334d5 (diff)
downloadcoupserv-c8507f711fd44ac68a4ff43b0aec4599e37cefd9.tar.gz
coupserv-c8507f711fd44ac68a4ff43b0aec4599e37cefd9.zip
Explicitly tell server about the server about the version, mention InspIRCd v2 compatability in README.md
Diffstat (limited to '')
-rw-r--r--README.md5
-rw-r--r--server_network.c1
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(" "));