diff options
author | Serge Aleynikov <[email protected]> | 2015-10-26 14:46:54 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-10-26 14:54:51 +0100 |
commit | afac3c7136c48d8630bd400c5454e146915e634f (patch) | |
tree | 47dc6a04cbfa817cefcc27114237ecffae7c43da /lib/kernel/src/inet_int.hrl | |
parent | a76cc1d337c0bf44ecefebeccac2d08e496ba7e8 (diff) | |
download | otp-afac3c7136c48d8630bd400c5454e146915e634f.tar.gz otp-afac3c7136c48d8630bd400c5454e146915e634f.tar.bz2 otp-afac3c7136c48d8630bd400c5454e146915e634f.zip |
erts: Add {line_delimiter, byte()} option to inet:setopts/2
A new {line_delimiter, byte()} option allows line-oriented TCP-based
protocols to use a custom line delimiting character. It is to be
used in conjunction with {packet, line}.
This option also works with erlang:decode_packet/3 when its first argument
is 'line'.
Diffstat (limited to 'lib/kernel/src/inet_int.hrl')
-rw-r--r-- | lib/kernel/src/inet_int.hrl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/kernel/src/inet_int.hrl b/lib/kernel/src/inet_int.hrl index bfe4c9ec8c..e7c6cf8ae2 100644 --- a/lib/kernel/src/inet_int.hrl +++ b/lib/kernel/src/inet_int.hrl @@ -149,6 +149,7 @@ -define(INET_LOPT_MSGQ_LOWTRMRK, 37). -define(INET_LOPT_NETNS, 38). -define(INET_LOPT_TCP_SHOW_ECONNRESET, 39). +-define(INET_LOPT_LINE_DELIM, 40). % Specific SCTP options: separate range: -define(SCTP_OPT_RTOINFO, 100). -define(SCTP_OPT_ASSOCINFO, 101). |