aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/include
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2019-04-30 16:46:27 +0200
committerRickard Green <[email protected]>2019-04-30 17:29:20 +0200
commite05ce24868c8391103faea7de3f230fa8f2ce0a2 (patch)
tree80ee1e86c1979cfa20ef940fcdbaabb10263bd1e /lib/erl_interface/include
parent68a90eb777b5c1e48c0760337fbf2b0b8a9aa6aa (diff)
downloadotp-e05ce24868c8391103faea7de3f230fa8f2ce0a2.tar.gz
otp-e05ce24868c8391103faea7de3f230fa8f2ce0a2.tar.bz2
otp-e05ce24868c8391103faea7de3f230fa8f2ce0a2.zip
Increase max number of node name characters to 256
Diffstat (limited to 'lib/erl_interface/include')
-rw-r--r--lib/erl_interface/include/ei.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/erl_interface/include/ei.h b/lib/erl_interface/include/ei.h
index ca4960b252..947726208e 100644
--- a/lib/erl_interface/include/ei.h
+++ b/lib/erl_interface/include/ei.h
@@ -191,12 +191,12 @@ extern volatile int __erl_errno;
* library and when using the library we set a value that we use
*/
-#define EI_MAXHOSTNAMELEN 64
-#define EI_MAXALIVELEN 63
#define EI_MAX_COOKIE_SIZE 512
#define MAXATOMLEN (255 + 1)
#define MAXATOMLEN_UTF8 (255*4 + 1)
-#define MAXNODELEN EI_MAXALIVELEN+1+EI_MAXHOSTNAMELEN
+#define EI_MAXHOSTNAMELEN (MAXATOMLEN - 2)
+#define EI_MAXALIVELEN (MAXATOMLEN - 2)
+#define MAXNODELEN MAXATOMLEN
typedef enum {
ERLANG_ASCII = 1,