.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (c) 2007 The University of Aberdeen, Scotland, UK |
---|
3 | 4 | * Copyright (c) 2005-7 The University of Waikato, Hamilton, New Zealand. |
---|
.. | .. |
---|
6 | 7 | * An implementation of the DCCP protocol |
---|
7 | 8 | * |
---|
8 | 9 | * This code has been developed by the University of Waikato WAND |
---|
9 | | - * research group. For further information please see http://www.wand.net.nz/ |
---|
| 10 | + * research group. For further information please see https://www.wand.net.nz/ |
---|
10 | 11 | * |
---|
11 | 12 | * This code also uses code from Lulea University, rereleased as GPL by its |
---|
12 | 13 | * authors: |
---|
.. | .. |
---|
17 | 18 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br>. |
---|
18 | 19 | * |
---|
19 | 20 | * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
---|
20 | | - * |
---|
21 | | - * This program is free software; you can redistribute it and/or modify |
---|
22 | | - * it under the terms of the GNU General Public License as published by |
---|
23 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
24 | | - * (at your option) any later version. |
---|
25 | | - * |
---|
26 | | - * This program is distributed in the hope that it will be useful, |
---|
27 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
28 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
29 | | - * GNU General Public License for more details. |
---|
30 | | - * |
---|
31 | | - * You should have received a copy of the GNU General Public License |
---|
32 | | - * along with this program; if not, write to the Free Software |
---|
33 | | - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
34 | 21 | */ |
---|
35 | 22 | #include "../dccp.h" |
---|
36 | 23 | #include "ccid3.h" |
---|
.. | .. |
---|
621 | 608 | */ |
---|
622 | 609 | if (hc->rx_x_recv > 0) |
---|
623 | 610 | break; |
---|
624 | | - /* fall through */ |
---|
| 611 | + fallthrough; |
---|
625 | 612 | case CCID3_FBACK_PERIODIC: |
---|
626 | 613 | delta = ktime_us_delta(now, hc->rx_tstamp_last_feedback); |
---|
627 | 614 | if (delta <= 0) |
---|