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