forked from Minki/linux
5a577b488f
This removes * functions for which updates have been provided in the preceding patches and * the @av_vec_len field - it is no longer necessary since the buffer length is now always computed dynamically; * conditional debugging code (CONFIG_IP_DCCP_ACKVEC). The reason for removing the conditional debugging code is that Ack Vectors are an almost inevitable necessity - RFC 4341 says that for CCID-2, Ack Vectors must be used. Furthermore, the code would be only interesting for coding - after some extensive testing with this patch set, having the debug code around is no longer of real help. Signed-off-by: Gerrit Renker <gerrit@erg.abdn.ac.uk>
21 lines
504 B
Makefile
21 lines
504 B
Makefile
obj-$(CONFIG_IP_DCCP) += dccp.o dccp_ipv4.o
|
|
|
|
dccp-y := ccid.o feat.o input.o minisocks.o options.o \
|
|
output.o proto.o timer.o ackvec.o
|
|
|
|
dccp_ipv4-y := ipv4.o
|
|
|
|
# build dccp_ipv6 as module whenever either IPv6 or DCCP is a module
|
|
obj-$(subst y,$(CONFIG_IP_DCCP),$(CONFIG_IPV6)) += dccp_ipv6.o
|
|
dccp_ipv6-y := ipv6.o
|
|
|
|
obj-$(CONFIG_INET_DCCP_DIAG) += dccp_diag.o
|
|
obj-$(CONFIG_NET_DCCPPROBE) += dccp_probe.o
|
|
|
|
dccp-$(CONFIG_SYSCTL) += sysctl.o
|
|
|
|
dccp_diag-y := diag.o
|
|
dccp_probe-y := probe.o
|
|
|
|
obj-y += ccids/
|