Commit a2c39584 authored by Wei Yongjun's avatar Wei Yongjun Committed by Vlad Yasevich

sctp: fix to only enable IPv6 address support on PF_INET6 socket

If socket is create by PF_INET type, it can not used IPv6 address
to send/recv DATA. So only enable IPv6 address support on PF_INET6
socket.
Signed-off-by: default avatarWei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: default avatarVlad Yasevich <vladislav.yasevich@hp.com>
parent 4553e88d
...@@ -293,7 +293,8 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a ...@@ -293,7 +293,8 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a
* told otherwise. * told otherwise.
*/ */
asoc->peer.ipv4_address = 1; asoc->peer.ipv4_address = 1;
asoc->peer.ipv6_address = 1; if (asoc->base.sk->sk_family == PF_INET6)
asoc->peer.ipv6_address = 1;
INIT_LIST_HEAD(&asoc->asocs); INIT_LIST_HEAD(&asoc->asocs);
asoc->autoclose = sp->autoclose; asoc->autoclose = sp->autoclose;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment