summaryrefslogtreecommitdiff
path: root/src/nng.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-31 16:56:02 -0700
committerGarrett D'Amore <garrett@damore.org>2017-08-18 14:51:54 -0700
commitdd2eda5a90ab86bbde1a9da481a423d367586a73 (patch)
tree1eeababc022654f68f95818060277b51110862dd /src/nng.c
parent7f8d3a898169eabb1f515e3206c762812ea4b475 (diff)
downloadnng-dd2eda5a90ab86bbde1a9da481a423d367586a73.tar.gz
nng-dd2eda5a90ab86bbde1a9da481a423d367586a73.tar.bz2
nng-dd2eda5a90ab86bbde1a9da481a423d367586a73.zip
Add new errnos we might need.
Diffstat (limited to 'src/nng.c')
-rw-r--r--src/nng.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nng.c b/src/nng.c
index 6c28f039..2cd1b3a5 100644
--- a/src/nng.c
+++ b/src/nng.c
@@ -638,6 +638,10 @@ static const struct {
{ NNG_ECONNRESET, "Connection reset" },
{ NNG_ECONNABORTED, "Connection aborted" },
{ NNG_ECANCELED, "Operation canceled" },
+ { NNG_ENOFILES, "Out of files" },
+ { NNG_ENOSPC, "Out of space" },
+ { NNG_EEXIST, "Resource already exists" },
+ { NNG_EINTERNAL, "Internal error detected" },
{ 0, NULL }
// clang-format on
};