diff options
Diffstat (limited to 'src/nng.c')
| -rw-r--r-- | src/nng.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -199,6 +199,15 @@ nng_strerror(int num) case NNG_EPERM: return ("Permission denied"); + + case NNG_EMSGSIZE: + return ("Message too large"); + + case NNG_ECONNRESET: + return ("Connection reset"); + + case NNG_ECONNABORTED: + return ("Connection aborted"); } if (num & NNG_ESYSERR) { |
