| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
|---|
| 3 | 4 | * operating system. INET is implemented using the BSD Socket |
|---|
| .. | .. |
|---|
| 9 | 10 | * |
|---|
| 10 | 11 | * Authors: Ross Biro |
|---|
| 11 | 12 | * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> |
|---|
| 12 | | - * |
|---|
| 13 | | - * This program is free software; you can redistribute it and/or |
|---|
| 14 | | - * modify it under the terms of the GNU General Public License |
|---|
| 15 | | - * as published by the Free Software Foundation; either version |
|---|
| 16 | | - * 2 of the License, or (at your option) any later version. |
|---|
| 17 | 13 | */ |
|---|
| 18 | 14 | #ifndef _ICMP_H |
|---|
| 19 | 15 | #define _ICMP_H |
|---|
| .. | .. |
|---|
| 58 | 54 | #endif |
|---|
| 59 | 55 | |
|---|
| 60 | 56 | int icmp_rcv(struct sk_buff *skb); |
|---|
| 61 | | -void icmp_err(struct sk_buff *skb, u32 info); |
|---|
| 57 | +int icmp_err(struct sk_buff *skb, u32 info); |
|---|
| 62 | 58 | int icmp_init(void); |
|---|
| 63 | 59 | void icmp_out_count(struct net *net, unsigned char type); |
|---|
| 64 | 60 | |
|---|