aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/include
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2016-06-14 18:42:33 +0200
committerSverker Eriksson <[email protected]>2016-08-15 17:37:13 +0200
commit8f03f5dc4c8bc2804acfaec5d3558456d27282b0 (patch)
treeda580c42255b3ea7695f4dd4a84fa4612bb6f2b1 /lib/kernel/include
parentfec9c26cf1746898a76043df7f2d0bebfa36c927 (diff)
downloadotp-8f03f5dc4c8bc2804acfaec5d3558456d27282b0.tar.gz
otp-8f03f5dc4c8bc2804acfaec5d3558456d27282b0.tar.bz2
otp-8f03f5dc4c8bc2804acfaec5d3558456d27282b0.zip
kernel: Add net_kernel:setopts/2 and getopts/2
Diffstat (limited to 'lib/kernel/include')
-rw-r--r--lib/kernel/include/dist_util.hrl8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/kernel/include/dist_util.hrl b/lib/kernel/include/dist_util.hrl
index 43e50d4325..320e916c04 100644
--- a/lib/kernel/include/dist_util.hrl
+++ b/lib/kernel/include/dist_util.hrl
@@ -63,7 +63,7 @@
f_getll, %% Get low level port or pid.
f_address, %% The address of the "socket",
%% generated from Socket,Node
- %% These two are used in the tick loop,
+ %% These three are used in the tick loop,
%% so they are not fun's to avoid holding old code.
mf_tick, %% Takes the socket as parameters and
%% sends a tick, this is no fun, it
@@ -74,7 +74,11 @@
%% {ok, RecvCnt, SendCnt, SendPend} for
%% a given socket. This is a {M,F},
%% returning {error, Reason on failure}
- request_type = normal
+ request_type = normal,
+
+ %% New in kernel-5.1 (OTP 19.1):
+ mf_setopts, %% netkernel:setopts on active connection
+ mf_getopts %% netkernel:getopts on active connection
}).