swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 09162bc32c880a791c6c0668ce0745cf7958f576 authored by Linus Torvalds on 16 November 2020, 00:44:31 UTC
Linux 5.10-rc4
Tip revision: 09162bc
nf_socket.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _NF_SOCK_H_
#define _NF_SOCK_H_

#include <net/sock.h>

struct sock *nf_sk_lookup_slow_v4(struct net *net, const struct sk_buff *skb,
				  const struct net_device *indev);

struct sock *nf_sk_lookup_slow_v6(struct net *net, const struct sk_buff *skb,
				  const struct net_device *indev);

#endif
back to top