2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2015-12-16 07:41:38 +08:00
|
|
|
/*
|
|
|
|
* ILA kernel interface
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Tom Herbert <tom@herbertland.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_ILA_H
|
|
|
|
#define _NET_ILA_H
|
|
|
|
|
2022-07-21 07:57:58 +08:00
|
|
|
struct sk_buff;
|
|
|
|
|
2015-12-16 07:41:38 +08:00
|
|
|
int ila_xlat_outgoing(struct sk_buff *skb);
|
|
|
|
int ila_xlat_incoming(struct sk_buff *skb);
|
|
|
|
|
|
|
|
#endif /* _NET_ILA_H */
|