Add sysctls for configuring RxRPC protocol handling, specifically controls on delays before ack generation, the delay before resending a packet, the maximum lifetime of a call and the expiration times of calls, connections and transports that haven't been recently used. More info added in Documentation/networking/rxrpc.txt. Signed-off-by: David Howells <dhowells@redhat.com>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			441 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			441 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Makefile for Linux kernel RxRPC
 | 
						|
#
 | 
						|
 | 
						|
af-rxrpc-y := \
 | 
						|
	af_rxrpc.o \
 | 
						|
	ar-accept.o \
 | 
						|
	ar-ack.o \
 | 
						|
	ar-call.o \
 | 
						|
	ar-connection.o \
 | 
						|
	ar-connevent.o \
 | 
						|
	ar-error.o \
 | 
						|
	ar-input.o \
 | 
						|
	ar-key.o \
 | 
						|
	ar-local.o \
 | 
						|
	ar-output.o \
 | 
						|
	ar-peer.o \
 | 
						|
	ar-recvmsg.o \
 | 
						|
	ar-security.o \
 | 
						|
	ar-skbuff.o \
 | 
						|
	ar-transport.o
 | 
						|
 | 
						|
af-rxrpc-$(CONFIG_PROC_FS) += ar-proc.o
 | 
						|
af-rxrpc-$(CONFIG_SYSCTL) += sysctl.o
 | 
						|
 | 
						|
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
 | 
						|
 | 
						|
obj-$(CONFIG_RXKAD) += rxkad.o
 |