diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-08 16:57:19 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-08 16:57:19 +0800 |
commit | 4d154b7f0651c02c49cbb0ebe6325bbf0b72feb8 (patch) | |
tree | 8cb7b3671361050009e3e53647fc1028a1c05b1f /errors.go | |
parent | Send 002 to 005 stubs on registration (diff) | |
download | meseircd-4d154b7f0651c02c49cbb0ebe6325bbf0b72feb8.tar.gz meseircd-4d154b7f0651c02c49cbb0ebe6325bbf0b72feb8.tar.zst meseircd-4d154b7f0651c02c49cbb0ebe6325bbf0b72feb8.zip |
UID -> CID
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ var ( ErrBodyTooLong = errors.New("body too long") ErrNotConnectedServer = errors.New("not connected server") ErrSendToSelf = errors.New("attempt to send message to self") - ErrUIDBusy = errors.New("too many busy uids") + ErrCIDBusy = errors.New("too many busy cids") ErrCallState = errors.New("invalid call state") ErrInconsistentGlobal = errors.New("inconsistent global state") ErrInconsistentClient = errors.New("inconsistent client state") |