diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-12 03:42:26 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-12 03:42:26 -0800 |
| commit | 1adefe3879b211a47a784f477d56a9416ae72254 (patch) | |
| tree | cf017599969fb109d62981cbef56eeeef4d2b108 /src/nng.h | |
| parent | 091043a0df9568b18e9bb49b07762b95e3508108 (diff) | |
| download | nng-1adefe3879b211a47a784f477d56a9416ae72254.tar.gz nng-1adefe3879b211a47a784f477d56a9416ae72254.tar.bz2 nng-1adefe3879b211a47a784f477d56a9416ae72254.zip | |
New inproc transport.
Lots of supporting changes.
Diffstat (limited to 'src/nng.h')
| -rw-r--r-- | src/nng.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -429,6 +429,14 @@ NNG_DECL int nng_device(nng_socket_t, nng_socket_t); #define NNG_ECONNREFUSED (-6) #define NNG_ECLOSED (-7) #define NNG_EAGAIN (-8) +#define NNG_ENOTSUP (-9) +#define NNG_EADDRINUSE (-10) + +/* + * Maximum length of a socket address. This includes the terminating NUL. + * This limit is built into other implementations, so do not change it. + */ +#define NNG_MAXADDRLEN (128) #ifdef __cplusplus } |
