.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * net/dccp/ackvec.c |
---|
3 | 4 | * |
---|
4 | 5 | * An implementation of Ack Vectors for the DCCP protocol |
---|
5 | 6 | * Copyright (c) 2007 University of Aberdeen, Scotland, UK |
---|
6 | 7 | * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
---|
7 | | - * |
---|
8 | | - * This program is free software; you can redistribute it and/or modify it |
---|
9 | | - * under the terms of the GNU General Public License as published by the |
---|
10 | | - * Free Software Foundation; version 2 of the License; |
---|
11 | 8 | */ |
---|
12 | 9 | #include "dccp.h" |
---|
13 | 10 | #include <linux/kernel.h> |
---|
.. | .. |
---|
277 | 274 | /** |
---|
278 | 275 | * dccp_ackvec_clear_state - Perform house-keeping / garbage-collection |
---|
279 | 276 | * This routine is called when the peer acknowledges the receipt of Ack Vectors |
---|
280 | | - * up to and including @ackno. While based on on section A.3 of RFC 4340, here |
---|
| 277 | + * up to and including @ackno. While based on section A.3 of RFC 4340, here |
---|
281 | 278 | * are additional precautions to prevent corrupted buffer state. In particular, |
---|
282 | 279 | * we use tail_ackno to identify outdated records; it always marks the earliest |
---|
283 | 280 | * packet of group (2) in 11.4.2. |
---|