Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Support For U6ID Principal #21

Open
wants to merge 4 commits into
base: xia
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions include/net/xia_u6id.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#ifndef _NET_XIA_U6ID_H
#define _NET_XIA_U6ID_H

#ifndef __KERNEL__
#include <stdbool.h>
#endif

#define XIDTYPE_U6ID (__cpu_to_be32(0x1b))

struct local_u6id_info {
bool tunnel;
bool no_check;
};

#endif /* _NET_XIA_U6ID_H */
1 change: 1 addition & 0 deletions net/xia/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ source "net/xia/ppal_hid/Kconfig"
source "net/xia/ppal_lpm/Kconfig"
source "net/xia/ppal_uni4id/Kconfig"
source "net/xia/ppal_u4id/Kconfig"
source "net/xia/ppal_u6id/Kconfig"
source "net/xia/ppal_xdp/Kconfig"
source "net/xia/ppal_zf/Kconfig"
endif # if XIA
2 changes: 2 additions & 0 deletions net/xia/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ obj-$(CONFIG_XIA_PPAL_HID) += ppal_hid/
obj-$(CONFIG_XIA_PPAL_LPM) += ppal_lpm/
obj-$(CONFIG_XIA_PPAL_UNI4ID) += ppal_uni4id/
obj-$(CONFIG_XIA_PPAL_U4ID) += ppal_u4id/
obj-$(CONFIG_XIA_PPAL_U6ID) += ppal_u6id/
obj-$(CONFIG_XIA_PPAL_XDP) += ppal_xdp/
obj-$(CONFIG_XIA_PPAL_ZF) += ppal_zf/

10 changes: 10 additions & 0 deletions net/xia/ppal_u6id/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
config XIA_PPAL_U6ID
tristate "UDP/IPv6 Principal (EXPERIMENTAL)"
select NET_UDP_TUNNEL
default m
help
UDP/IPv6 (U6ID) Principal provides the ability to encapsulate XIP
packets into UDP-over-IPv6 packets to tunnel them through a network.
You should only add this principal if you have added XIA and wish to
utilize IPv6 to tunnel XIP data through a network.
If you are unsure how to answer this question, answer M.
7 changes: 7 additions & 0 deletions net/xia/ppal_u6id/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Makefile for U6ID principal
#

obj-$(CONFIG_XIA_PPAL_U6ID) += xia_ppal_u6id.o

xia_ppal_u6id-objs := main.o
Loading