Commit 917fe898 authored by David S. Miller's avatar David S. Miller

[SCTP]: Match ipproto->handler changes for ipv6.

parent 82c1f12a
......@@ -672,8 +672,13 @@ static struct inet_protosw sctpv6_stream_protosw = {
.flags = SCTP_PROTOSW_FLAG
};
static int sctp6_rcv(struct sk_buff **pskb)
{
return sctp_rcv(*pskb);
}
static struct inet6_protocol sctpv6_protocol = {
.handler = sctp_rcv,
.handler = sctp6_rcv,
.err_handler = sctp_v6_err,
};
......
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