sctp: Add ASCONF operation on the single-homed host
In this case, the SCTP association transmits an ASCONF packet including addition of the new IP address and deletion of the old address. This patch implements this functionality. In this case, the ASCONF chunk is added to the beginning of the queue, because the other chunks cannot be transmitted in this state. Signed-off-by: Michio Honda <micchie@sfc.wide.ad.jp> Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Acked-by: Wei Yongjun <yjwei@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
7dc04d7122
commit
8a07eb0a50
@ -280,6 +280,8 @@ static struct sctp_association *sctp_association_init(struct sctp_association *a
|
||||
asoc->peer.asconf_capable = 0;
|
||||
if (sctp_addip_noauth)
|
||||
asoc->peer.asconf_capable = 1;
|
||||
asoc->asconf_addr_del_pending = NULL;
|
||||
asoc->src_out_of_asoc_ok = 0;
|
||||
|
||||
/* Create an input queue. */
|
||||
sctp_inq_init(&asoc->base.inqueue);
|
||||
@ -446,6 +448,10 @@ void sctp_association_free(struct sctp_association *asoc)
|
||||
|
||||
sctp_asconf_queue_teardown(asoc);
|
||||
|
||||
/* Free pending address space being deleted */
|
||||
if (asoc->asconf_addr_del_pending != NULL)
|
||||
kfree(asoc->asconf_addr_del_pending);
|
||||
|
||||
/* AUTH - Free the endpoint shared keys */
|
||||
sctp_auth_destroy_keys(&asoc->endpoint_shared_keys);
|
||||
|
||||
|
Reference in New Issue
Block a user