diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-08 12:40:41 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-08 12:40:41 +0800 |
commit | a81162e4a5f830339cfb143eeb951a57868c52b3 (patch) | |
tree | 4c3781785259e9c43cfb0a6b0a1a12eb707934ec /errors.go | |
parent | Ergo stuff is ISC, not MIT (diff) | |
download | meseircd-a81162e4a5f830339cfb143eeb951a57868c52b3.tar.gz meseircd-a81162e4a5f830339cfb143eeb951a57868c52b3.tar.zst meseircd-a81162e4a5f830339cfb143eeb951a57868c52b3.zip |
NICK: Also delete old nick association when not fully registered
Diffstat (limited to '')
-rw-r--r-- | errors.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,8 @@ var ( ErrNotConnectedServer = errors.New("not connected server") ErrSendToSelf = errors.New("attempt to send message to self") ErrUIDBusy = errors.New("too many busy uids") - ErrInconsistent = errors.New("inconsistent state") ErrCallState = errors.New("invalid call state") + ErrInconsistentGlobal = errors.New("inconsistent global state") + ErrInconsistentClient = errors.New("inconsistent client state") + ErrRemoteClient = errors.New("operation not supported for a remote client") ) |