Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98082
b: refs/heads/master
c: 65907a4
h: refs/heads/master
v: v3
  • Loading branch information
Gerrit Renker committed Jun 11, 2008
1 parent 7262de6 commit c6fa75f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e2f0e5e8376f2a0ada8760fc9d3104e1a81382b
refs/heads/master: 65907a433ac0ca450c4408080f24c6e4743386b2
4 changes: 3 additions & 1 deletion trunk/net/dccp/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c6fa75f

Please sign in to comment.