diff options
| author | 2022-06-26 15:20:06 +0100 | |
|---|---|---|
| committer | 2022-06-26 15:29:29 +0100 | |
| commit | 89712e2e84af1230232985c680846208a932d72b (patch) | |
| tree | e6c43c55013a7b40e6f62c7d2410cd7790a9863a /src/channels.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Move numerics to the source files where they are actually used.
Diffstat (limited to 'src/channels.cpp')
| -rw-r--r-- | src/channels.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index d4b488862..a2cd6a353 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -28,6 +28,12 @@ #include "inspircd.h" #include "listmode.h" +enum +{ + // From RFC 1459. + ERR_TOOMANYCHANNELS = 405, +}; + namespace { ChanModeReference ban(NULL, "ban"); |
