Display IPv6 support flag with the other per-server flags.
authorMichael Poole <mdpoole@troilus.org>
Sat, 19 Nov 2005 23:59:22 +0000 (23:59 +0000)
committerMichael Poole <mdpoole@troilus.org>
Sat, 19 Nov 2005 23:59:22 +0000 (23:59 +0000)
git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/branches/u2_10_12_branch@1569 c9e4aea6-c8fd-4c43-8297-357d70d61c8c

ChangeLog
ircd/s_stats.c

index fa5a2e43bd537d74737025ce2ec1afb8ec840a0d..f0b7e046e5c36ee49245425f0bd45f21083b6733 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-19  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/s_stats.c (stats_servers_verbose): Display IPv6 support
+       flag with the other per-server flags.
+
 2005-11-19  Michael Poole <mdpoole@troilus.org>
 
        * ircd/convert-conf.c (finish_features): Only emit "Features {"
index 22781148ae630202d8a92f77e6e96248763bb4a9..c37630b8dea442ec732fb8305c025296a1ba0b11 100644 (file)
@@ -455,9 +455,9 @@ stats_servers_verbose(struct Client* sptr, const struct StatDesc* sd,
                "%-20s %-20s Flags Hops Numeric   Lag  RTT   Up Down "
                "Clients/Max Proto %-10s :Info", "Servername", "Uplink",
                "LinkTS");
-    fmt = "%-20s %-20s %c%c%c%c  %4i %s %-4i %5i %4i %4i %4i %5i %5i P%-2i   %Tu :%s";
+    fmt = "%-20s %-20s %c%c%c%c%c  %4i %s %-4i %5i %4i %4i %4i %5i %5i P%-2i   %Tu :%s";
   } else {
-    fmt = "%s %s %c%c%c%c %i %s %i %i %i %i %i %i %i P%i %Tu :%s";
+    fmt = "%s %s %c%c%c%c%c %i %s %i %i %i %i %i %i %i P%i %Tu :%s";
   }
 
   for (acptr = GlobalClientList; acptr; acptr = cli_next(acptr))
@@ -474,6 +474,7 @@ stats_servers_verbose(struct Client* sptr, const struct StatDesc* sd,
                IsBurstAck(acptr) ? 'A' : '-',
                IsHub(acptr) ? 'H' : '-',
                IsService(acptr) ? 'S' : '-',
+               IsIPv6(acptr) ? '6' : '-',
                cli_hopcount(acptr),
                NumServ(acptr),
                base64toint(cli_yxx(acptr)),