diff options
author | Felix Fietkau <nbd@nbd.name> | 2021-03-24 02:30:36 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-24 12:48:38 -0700 |
commit | f6efc675c9dd8d93f826b79ae7e33e03301db609 (patch) | |
tree | 4c2155ec49a7010ef74d4b4e7fed7d6b960a0605 /include/linux/ppp_channel.h | |
parent | bcf2766b1377421b7c9259865b25c1b62a7fa686 (diff) |
net: ppp: resolve forwarding path for bridge pppoe devices
Pass on the PPPoE session ID, destination hardware address and the real
device.
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ppp_channel.h')
-rw-r--r-- | include/linux/ppp_channel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/ppp_channel.h b/include/linux/ppp_channel.h index 98966064ee68..91f9a928344e 100644 --- a/include/linux/ppp_channel.h +++ b/include/linux/ppp_channel.h @@ -28,6 +28,9 @@ struct ppp_channel_ops { int (*start_xmit)(struct ppp_channel *, struct sk_buff *); /* Handle an ioctl call that has come in via /dev/ppp. */ int (*ioctl)(struct ppp_channel *, unsigned int, unsigned long); + int (*fill_forward_path)(struct net_device_path_ctx *, + struct net_device_path *, + const struct ppp_channel *); }; struct ppp_channel { |