diff options
author | David Howells <dhowells@redhat.com> | 2016-09-04 13:25:21 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-09-04 21:41:39 +0100 |
commit | 3dc20f090d84a7b08bc1d5729c874ebbd0465468 (patch) | |
tree | 8c434f88a5dc0563ac5da69bb79cc0ae5f917653 /net/rxrpc/sendmsg.c | |
parent | df423a4af125f5b3d6f71b630e5c209774c353fd (diff) | |
download | blackbird-obmc-linux-3dc20f090d84a7b08bc1d5729c874ebbd0465468.tar.gz blackbird-obmc-linux-3dc20f090d84a7b08bc1d5729c874ebbd0465468.zip |
rxrpc Move enum rxrpc_command to sendmsg.c
Move enum rxrpc_command to sendmsg.c as it's now only used in that file.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'net/rxrpc/sendmsg.c')
-rw-r--r-- | net/rxrpc/sendmsg.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/rxrpc/sendmsg.c b/net/rxrpc/sendmsg.c index 17a9ebbc2346..7376794a0308 100644 --- a/net/rxrpc/sendmsg.c +++ b/net/rxrpc/sendmsg.c @@ -20,6 +20,13 @@ #include <net/af_rxrpc.h> #include "ar-internal.h" +enum rxrpc_command { + RXRPC_CMD_SEND_DATA, /* send data message */ + RXRPC_CMD_SEND_ABORT, /* request abort generation */ + RXRPC_CMD_ACCEPT, /* [server] accept incoming call */ + RXRPC_CMD_REJECT_BUSY, /* [server] reject a call as busy */ +}; + /* * wait for space to appear in the transmit/ACK window * - caller holds the socket locked |