diff options
author | Lukas Larsson <[email protected]> | 2012-05-23 11:25:08 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-05-23 11:25:08 +0200 |
commit | 90cbd16d39bb00c6eb4f3ffe04a406f800ee9126 (patch) | |
tree | 8b5c7b186208b84797ec9b614443c802392133ae /lib/kernel/src/gen_sctp.erl | |
parent | 0d98106bfa6f0c637019604f4c25e6c48cd1d5fc (diff) | |
parent | 1ba2039020738673b3913be0e48d83713503a3b7 (diff) | |
download | otp-90cbd16d39bb00c6eb4f3ffe04a406f800ee9126.tar.gz otp-90cbd16d39bb00c6eb4f3ffe04a406f800ee9126.tar.bz2 otp-90cbd16d39bb00c6eb4f3ffe04a406f800ee9126.zip |
Merge branch 'maint'
* maint:
Add testcase for controlling_process(P,self())
Fix port leaking after controlling_process(Port, self())
Diffstat (limited to 'lib/kernel/src/gen_sctp.erl')
-rw-r--r-- | lib/kernel/src/gen_sctp.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/kernel/src/gen_sctp.erl b/lib/kernel/src/gen_sctp.erl index d8954f0cf7..8fa963ec78 100644 --- a/lib/kernel/src/gen_sctp.erl +++ b/lib/kernel/src/gen_sctp.erl @@ -425,9 +425,10 @@ error_string(X) -> erlang:error(badarg, [X]). --spec controlling_process(Socket, Pid) -> ok when +-spec controlling_process(Socket, Pid) -> ok | {error, Reason} when Socket :: sctp_socket(), - Pid :: pid(). + Pid :: pid(), + Reason :: closed | not_owner | inet:posix(). controlling_process(S, Pid) when is_port(S), is_pid(Pid) -> inet:udp_controlling_process(S, Pid); |