aboutsummaryrefslogtreecommitdiffstats
path: root/erts/preloaded/src
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2019-02-12 15:18:07 +0100
committerMicael Karlberg <[email protected]>2019-02-22 19:45:53 +0100
commit2b268fb6ac18956a3d5d55eea57fdc461d5ef7bf (patch)
tree800621865cd2909cdf399fb5a669d850e95daaf7 /erts/preloaded/src
parentdbb88c285ee0590b736980f063e1d62e8d598953 (diff)
downloadotp-2b268fb6ac18956a3d5d55eea57fdc461d5ef7bf.tar.gz
otp-2b268fb6ac18956a3d5d55eea57fdc461d5ef7bf.tar.bz2
otp-2b268fb6ac18956a3d5d55eea57fdc461d5ef7bf.zip
[socket|doc] Fixed links and stuff
Corrected linking references (links) to functions. Also added links from getopt/setopt functions to the users guide. Also added some comments to the socket module regarding open with (ready made) descriptor (which is not yet supported). OTP-14831
Diffstat (limited to 'erts/preloaded/src')
-rw-r--r--erts/preloaded/src/socket.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/preloaded/src/socket.erl b/erts/preloaded/src/socket.erl
index f889c6e37b..f04f9701d3 100644
--- a/erts/preloaded/src/socket.erl
+++ b/erts/preloaded/src/socket.erl
@@ -949,10 +949,12 @@ supports(_Key1, _Key2, _Key3) ->
%%
%% <KOLLA>
%%
-%% How do we handle the case when an fd has beem created (somehow)
+%% How do we handle the case when an fd has been created (somehow)
%% and we shall create a socket "from it".
%% Can we figure out Domain, Type and Protocol from fd?
%% Yes we can: SO_DOMAIN, SO_PROTOCOL, SO_TYPE
+%% But does that work on all platforms? Or shall we require that the
+%% caller provide this explicitly?
%%
%% </KOLLA>
%%