diff options
author | Henrik Nord <[email protected]> | 2014-07-24 17:04:46 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-07-24 17:09:03 +0200 |
commit | 7de69a943ebf3be3fc9b8b4f79bba2819107e1ab (patch) | |
tree | 3bd523f78022cf457c41da02999abf0029b47f60 /lib/kernel/doc | |
parent | 6cae32f48905328561f28fe9eed1a4f18bbf1bd0 (diff) | |
parent | 1b9383a8dbc03473860dfaacc7a02fbc8b1b1185 (diff) | |
download | otp-7de69a943ebf3be3fc9b8b4f79bba2819107e1ab.tar.gz otp-7de69a943ebf3be3fc9b8b4f79bba2819107e1ab.tar.bz2 otp-7de69a943ebf3be3fc9b8b4f79bba2819107e1ab.zip |
Merge branch 'maint'
Conflicts:
erts/preloaded/ebin/prim_inet.beam
Diffstat (limited to 'lib/kernel/doc')
-rw-r--r-- | lib/kernel/doc/src/gen_tcp.xml | 7 | ||||
-rw-r--r-- | lib/kernel/doc/src/notes.xml | 15 |
2 files changed, 21 insertions, 1 deletions
diff --git a/lib/kernel/doc/src/gen_tcp.xml b/lib/kernel/doc/src/gen_tcp.xml index dbd0d3c815..820ecd1e30 100644 --- a/lib/kernel/doc/src/gen_tcp.xml +++ b/lib/kernel/doc/src/gen_tcp.xml @@ -112,7 +112,12 @@ do_recv(Sock, Bs) -> <item> <p>If a socket has somehow been connected without using <c>gen_tcp</c>, use this option to pass the file - descriptor for it.</p> + descriptor for it. If <c>{ip, ip_address()}</c> + and/or <c>{port, port_number()}</c> is combined with + this option the fd will be bound to the given interface + and port before connecting. If these options are not given + it is assumed that the fd is already bound appropriately. + </p> </item> <tag><c>inet</c></tag> diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 35889f9d11..b75644a847 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -292,6 +292,21 @@ corrected. </p> <p> Thanks to Max Treskin. </p> <p> Own Id: OTP-11730</p> +<section><title>Kernel 2.16.4.1</title> + + <section><title>Known Bugs and Problems</title> + <list> + <item> + <p> + When using gen_tcp:connect and the <c>fd</c> option with + <c>port</c> and/or <c>ip</c>, the <c>port</c> and + <c>ip</c> options were ignored. This has been fixed so + that if <c>port</c> and/or <c>ip</c> is specified + together with <c>fd</c> a bind is requested for that + <c>fd</c>. If <c>port</c> and/or <c>ip</c> is not + specified bind will not be called.</p> + <p> + Own Id: OTP-12061</p> </item> </list> </section> |