diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2009-02-13 08:33:44 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-16 00:03:11 -0800 |
commit | 914e1c8b6980c516667375d3e55f0b6e674c8c58 (patch) | |
tree | d61194143a112ace85f6e6dfc22bc01d7173f62e /include | |
parent | faee47cdbfe8d74a1573c2f81ea6dbb08d735be6 (diff) | |
download | kernel-crypto-914e1c8b6980c516667375d3e55f0b6e674c8c58.tar.gz kernel-crypto-914e1c8b6980c516667375d3e55f0b6e674c8c58.tar.xz kernel-crypto-914e1c8b6980c516667375d3e55f0b6e674c8c58.zip |
sctp: Inherit all socket options from parent correctly.
During peeloff/accept() sctp needs to save the parent socket state
into the new socket so that any options set on the parent are
inherited by the child socket. This was found when the
parent/listener socket issues SO_BINDTODEVICE, but the
data was misrouted after a route cache flush.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/sctp/sctp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index bbb7742195b..9e226be3be6 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h @@ -138,6 +138,8 @@ void sctp_write_space(struct sock *sk); unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait); void sctp_sock_rfree(struct sk_buff *skb); +void sctp_copy_sock(struct sock *newsk, struct sock *sk, + struct sctp_association *asoc); extern struct percpu_counter sctp_sockets_allocated; /* |