[AF_RXRPC]: Provide secure RxRPC sockets for use by userspace and kernel both
authorDavid Howells <dhowells@redhat.com>
Thu, 26 Apr 2007 22:48:28 +0000 (15:48 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 Apr 2007 22:48:28 +0000 (15:48 -0700)
commit17926a79320afa9b95df6b977b40cca6d8713cea
tree5cedff43b69520ad17b86783d3752053686ec99c
parente19dff1fdd99a25819af74cf0710e147fff4fd3a
[AF_RXRPC]: Provide secure RxRPC sockets for use by userspace and kernel both

Provide AF_RXRPC sockets that can be used to talk to AFS servers, or serve
answers to AFS clients.  KerberosIV security is fully supported.  The patches
and some example test programs can be found in:

http://people.redhat.com/~dhowells/rxrpc/

This will eventually replace the old implementation of kernel-only RxRPC
currently resident in net/rxrpc/.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
31 files changed:
Documentation/networking/rxrpc.txt [new file with mode: 0644]
include/keys/rxrpc-type.h [new file with mode: 0644]
include/linux/net.h
include/linux/rxrpc.h [new file with mode: 0644]
include/linux/socket.h
include/net/af_rxrpc.h [new file with mode: 0644]
include/rxrpc/packet.h
net/Kconfig
net/Makefile
net/core/sock.c
net/rxrpc/Kconfig [new file with mode: 0644]
net/rxrpc/Makefile
net/rxrpc/af_rxrpc.c [new file with mode: 0644]
net/rxrpc/ar-accept.c [new file with mode: 0644]
net/rxrpc/ar-ack.c [new file with mode: 0644]
net/rxrpc/ar-call.c [new file with mode: 0644]
net/rxrpc/ar-connection.c [new file with mode: 0644]
net/rxrpc/ar-connevent.c [new file with mode: 0644]
net/rxrpc/ar-error.c [new file with mode: 0644]
net/rxrpc/ar-input.c [new file with mode: 0644]
net/rxrpc/ar-internal.h [new file with mode: 0644]
net/rxrpc/ar-key.c [new file with mode: 0644]
net/rxrpc/ar-local.c [new file with mode: 0644]
net/rxrpc/ar-output.c [new file with mode: 0644]
net/rxrpc/ar-peer.c [new file with mode: 0644]
net/rxrpc/ar-proc.c [new file with mode: 0644]
net/rxrpc/ar-recvmsg.c [new file with mode: 0644]
net/rxrpc/ar-security.c [new file with mode: 0644]
net/rxrpc/ar-skbuff.c [new file with mode: 0644]
net/rxrpc/ar-transport.c [new file with mode: 0644]
net/rxrpc/rxkad.c [new file with mode: 0644]