Skip to content

Commit

Permalink
sctp: Do not enable peer IPv6 address support on PF_INET socket
Browse files Browse the repository at this point in the history
If socket is create by PF_INET type, it can not used IPv6 address to
send/recv DATA, So we can not used IPv6 address even if peer tell us it
support IPv6 address.
This patch fix to only enabled peer IPv6 address support on PF_INET6 socket.

Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wei Yongjun authored and David S. Miller committed May 12, 2008
1 parent f9af857 commit 6e40a91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion net/sctp/sm_make_chunk.c
Original file line number Diff line number Diff line change
Expand Up @@ -2418,7 +2418,8 @@ static int sctp_process_param(struct sctp_association *asoc,
break;

case SCTP_PARAM_IPV6_ADDRESS:
asoc->peer.ipv6_address = 1;
if (PF_INET6 == asoc->base.sk->sk_family)
asoc->peer.ipv6_address = 1;
break;

case SCTP_PARAM_HOST_NAME_ADDRESS:
Expand Down

0 comments on commit 6e40a91

Please sign in to comment.