Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
9a98fe28
Commit
9a98fe28
authored
Mar 24, 2003
by
Hideaki Yoshifuji
Committed by
David S. Miller
Mar 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPSEC]: Move xfrm_*.c into net/xfrm/
parent
89bd49ed
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
23 additions
and
11 deletions
+23
-11
net/Kconfig
net/Kconfig
+2
-0
net/Makefile
net/Makefile
+1
-1
net/ipv4/Kconfig
net/ipv4/Kconfig
+0
-8
net/ipv4/Makefile
net/ipv4/Makefile
+1
-2
net/xfrm/Kconfig
net/xfrm/Kconfig
+12
-0
net/xfrm/Makefile
net/xfrm/Makefile
+7
-0
net/xfrm/xfrm_algo.c
net/xfrm/xfrm_algo.c
+0
-0
net/xfrm/xfrm_input.c
net/xfrm/xfrm_input.c
+0
-0
net/xfrm/xfrm_policy.c
net/xfrm/xfrm_policy.c
+0
-0
net/xfrm/xfrm_state.c
net/xfrm/xfrm_state.c
+0
-0
net/xfrm/xfrm_user.c
net/xfrm/xfrm_user.c
+0
-0
No files found.
net/Kconfig
View file @
9a98fe28
...
...
@@ -224,6 +224,8 @@ config IPV6
source "net/ipv6/Kconfig"
source "net/xfrm/Kconfig"
source "net/sctp/Kconfig"
config ATM
...
...
net/Makefile
View file @
9a98fe28
...
...
@@ -14,7 +14,7 @@ obj-$(CONFIG_COMPAT) += compat.o
# LLC has to be linked before the files in net/802/
obj-$(CONFIG_LLC)
+=
llc/
obj-$(CONFIG_NET)
+=
ethernet/ 802/ sched/ netlink/
obj-$(CONFIG_INET)
+=
ipv4/
obj-$(CONFIG_INET)
+=
ipv4/
xfrm/
obj-$(CONFIG_UNIX)
+=
unix/
obj-$(CONFIG_IPV6)
+=
ipv6/
obj-$(CONFIG_PACKET)
+=
packet/
...
...
net/ipv4/Kconfig
View file @
9a98fe28
...
...
@@ -362,13 +362,5 @@ config INET_ESP
If unsure, say Y.
config XFRM_USER
tristate "IP: IPsec user configuration interface"
---help---
Support for IPsec user configuration interface used
by native Linux tools.
If unsure, say Y.
source "net/ipv4/netfilter/Kconfig"
net/ipv4/Makefile
View file @
9a98fe28
...
...
@@ -20,6 +20,5 @@ obj-$(CONFIG_INET_AH) += ah.o
obj-$(CONFIG_INET_ESP)
+=
esp.o
obj-$(CONFIG_IP_PNP)
+=
ipconfig.o
obj-$(CONFIG_NETFILTER)
+=
netfilter/
obj-$(CONFIG_XFRM_USER)
+=
xfrm_user.o
obj-y
+=
xfrm
_policy.o xfrm4_policy.o xfrm_state.o xfrm4_state.o xfrm_input.o xfrm4_input.o xfrm_algo
.o
obj-y
+=
xfrm
4_policy.o xfrm4_state.o xfrm4_input
.o
net/xfrm/Kconfig
0 → 100644
View file @
9a98fe28
#
# XFRM configuration
#
config XFRM_USER
tristate "IPsec user configuration interface"
depends on INET
---help---
Support for IPsec user configuration interface used
by native Linux tools.
If unsure, say Y.
net/xfrm/Makefile
0 → 100644
View file @
9a98fe28
#
# Makefile for the XFRM subsystem.
#
obj-y
:=
xfrm_policy.o xfrm_state.o xfrm_input.o xfrm_algo.o
obj-$(CONFIG_XFRM_USER)
+=
xfrm_user.o
net/
ipv4
/xfrm_algo.c
→
net/
xfrm
/xfrm_algo.c
View file @
9a98fe28
File moved
net/
ipv4
/xfrm_input.c
→
net/
xfrm
/xfrm_input.c
View file @
9a98fe28
File moved
net/
ipv4
/xfrm_policy.c
→
net/
xfrm
/xfrm_policy.c
View file @
9a98fe28
File moved
net/
ipv4
/xfrm_state.c
→
net/
xfrm
/xfrm_state.c
View file @
9a98fe28
File moved
net/
ipv4
/xfrm_user.c
→
net/
xfrm
/xfrm_user.c
View file @
9a98fe28
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment