commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
23 lines
429 B
C
23 lines
429 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015 Cumulus Networks, Inc.
|
|
*/
|
|
|
|
#ifndef _NET_MPLS_IPTUNNEL_H
|
|
#define _NET_MPLS_IPTUNNEL_H 1
|
|
|
|
struct mpls_iptunnel_encap {
|
|
u8 labels;
|
|
u8 ttl_propagate;
|
|
u8 default_ttl;
|
|
u8 reserved1;
|
|
u32 label[];
|
|
};
|
|
|
|
static inline struct mpls_iptunnel_encap *mpls_lwtunnel_encap(struct lwtunnel_state *lwtstate)
|
|
{
|
|
return (struct mpls_iptunnel_encap *)lwtstate->data;
|
|
}
|
|
|
|
#endif
|