aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/doc/src/net_kernel.xml
diff options
context:
space:
mode:
authorMagnus Henoch <[email protected]>2015-11-11 15:33:39 +0000
committerMagnus Henoch <[email protected]>2015-11-11 15:33:39 +0000
commit05eee243c7e5fb8d501807a3b11065e1bf2c2b9a (patch)
tree16327edcfe76b6d3788523a10dc5d55f38fb8ddb /lib/kernel/doc/src/net_kernel.xml
parent7eb292fd6849e43dad0b738027d90ca4944d14e2 (diff)
downloadotp-05eee243c7e5fb8d501807a3b11065e1bf2c2b9a.tar.gz
otp-05eee243c7e5fb8d501807a3b11065e1bf2c2b9a.tar.bz2
otp-05eee243c7e5fb8d501807a3b11065e1bf2c2b9a.zip
Fix documentation of net_kernel:allow/1
Make the documentation reflect what the function actually does.
Diffstat (limited to 'lib/kernel/doc/src/net_kernel.xml')
-rw-r--r--lib/kernel/doc/src/net_kernel.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/kernel/doc/src/net_kernel.xml b/lib/kernel/doc/src/net_kernel.xml
index a0132db8db..311e0d8ea4 100644
--- a/lib/kernel/doc/src/net_kernel.xml
+++ b/lib/kernel/doc/src/net_kernel.xml
@@ -63,11 +63,16 @@
<funcs>
<func>
<name name="allow" arity="1"/>
- <fsummary>Limit access to a specified set of nodes</fsummary>
+ <fsummary>Permit access to a specified set of nodes</fsummary>
<desc>
- <p>Limits access to the specified set of nodes. Any access
- attempts made from (or to) nodes not in <c><anno>Nodes</anno></c> will be
- rejected.</p>
+ <p>Permits access to the specified set of nodes.</p>
+ <p>Before the first call to <c>allow/1</c>, any node with the correct
+ cookie can be connected. When <c>allow/1</c> is called, a list
+ of allowed nodes is established. Any access attempts made from (or to)
+ nodes not in that list will be rejected.</p>
+ <p>Subsequent calls to <c>allow/1</c> will add the specified nodes
+ to the list of allowed nodes. It is not possible to remove nodes
+ from the list.</p>
<p>Returns <c>error</c> if any element in <c><anno>Nodes</anno></c> is not
an atom.</p>
</desc>