diff --git a/[refs] b/[refs] index d250b328bc22..ed3703fa528d 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1e2f0e5e8376f2a0ada8760fc9d3104e1a81382b +refs/heads/master: 65907a433ac0ca450c4408080f24c6e4743386b2 diff --git a/trunk/net/dccp/options.c b/trunk/net/dccp/options.c index d2a84a2fecee..43bc24e761d0 100644 --- a/trunk/net/dccp/options.c +++ b/trunk/net/dccp/options.c @@ -107,9 +107,11 @@ int dccp_parse_options(struct sock *sk, struct dccp_request_sock *dreq, * * CCID-specific options are ignored during connection setup, as * negotiation may still be in progress (see RFC 4340, 10.3). + * The same applies to Ack Vectors, as these depend on the CCID. * */ - if (dreq != NULL && opt >= 128) + if (dreq != NULL && (opt >= 128 || + opt == DCCPO_ACK_VECTOR_0 || opt == DCCPO_ACK_VECTOR_1)) goto ignore_option; switch (opt) {