Complete IRC numerics module and move to pkg/irc/ (refs #52) #71

Merged
sneak merged 5 commits from feat/complete-irc-numerics into main 2026-03-10 18:41:27 +01:00
Showing only changes of commit fa347772f2 - Show all commits

View File

@@ -32,14 +32,17 @@ const (
RplStatsNLine = 214
RplStatsILine = 215
RplStatsKLine = 216
RplStatsQLine = 217
RplStatsYLine = 218
RplEndOfStats = 219
RplUmodeIs = 221
RplServList = 234
RplServListEnd = 235
RplStatsLLine = 241
RplStatsUptime = 242
RplStatsOLine = 243
RplStatsHLine = 244
RplLuserClient = 251
RplLuserOp = 252
RplLuserUnknown = 253
@@ -192,14 +195,17 @@ var names = map[int]string{
RplStatsNLine: "RPL_STATSNLINE",
RplStatsILine: "RPL_STATSILINE",
RplStatsKLine: "RPL_STATSKLINE",
RplStatsQLine: "RPL_STATSQLINE",
RplStatsYLine: "RPL_STATSYLINE",
RplEndOfStats: "RPL_ENDOFSTATS",
RplUmodeIs: "RPL_UMODEIS",
RplServList: "RPL_SERVLIST",
RplServListEnd: "RPL_SERVLISTEND",
RplStatsLLine: "RPL_STATSLLINE",
RplStatsUptime: "RPL_STATSUPTIME",
RplStatsOLine: "RPL_STATSOLINE",
RplStatsHLine: "RPL_STATSHLINE",
RplLuserClient: "RPL_LUSERCLIENT",
RplLuserOp: "RPL_LUSEROP",
RplLuserUnknown: "RPL_LUSERUNKNOWN",