Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

SUNRPC: Add RPC_AUTH_TLS protocol numbers

Shared by client and server. See:

https://www.iana.org/assignments/rpc-authentication-numbers/rpc-authentication-numbers.xhtml

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

+2
+1
include/linux/sunrpc/msg_prot.h
··· 20 20 RPC_AUTH_DES = 3, 21 21 RPC_AUTH_KRB = 4, 22 22 RPC_AUTH_GSS = 6, 23 + RPC_AUTH_TLS = 7, 23 24 RPC_AUTH_MAXFLAVOR = 8, 24 25 /* pseudoflavors: */ 25 26 RPC_AUTH_GSS_KRB5 = 390003,
+1
include/linux/sunrpc/xdr.h
··· 95 95 #define rpc_auth_unix cpu_to_be32(RPC_AUTH_UNIX) 96 96 #define rpc_auth_short cpu_to_be32(RPC_AUTH_SHORT) 97 97 #define rpc_auth_gss cpu_to_be32(RPC_AUTH_GSS) 98 + #define rpc_auth_tls cpu_to_be32(RPC_AUTH_TLS) 98 99 99 100 #define rpc_call cpu_to_be32(RPC_CALL) 100 101 #define rpc_reply cpu_to_be32(RPC_REPLY)