f95de8aa9f
Fix following warning: net/ipv4/bpfilter/sockopt.c:28:5: error: symbol 'bpfilter_ip_set_sockopt' redeclared with different type net/ipv4/bpfilter/sockopt.c:34:5: error: symbol 'bpfilter_ip_get_sockopt' redeclared with different type Signed-off-by: YueHaibing <yuehaibing@huawei.com> Acked-by: Martin KaFai Lau <kafai@fb.com> Acked-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
508 B
C
15 lines
508 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_BPFILTER_H
|
|
#define _LINUX_BPFILTER_H
|
|
|
|
#include <uapi/linux/bpfilter.h>
|
|
|
|
struct sock;
|
|
int bpfilter_ip_set_sockopt(struct sock *sk, int optname, char __user *optval,
|
|
unsigned int optlen);
|
|
int bpfilter_ip_get_sockopt(struct sock *sk, int optname, char __user *optval,
|
|
int __user *optlen);
|
|
extern int (*bpfilter_process_sockopt)(struct sock *sk, int optname,
|
|
char __user *optval,
|
|
unsigned int optlen, bool is_set);
|
|
#endif
|