diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-10-10 23:45:19 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-11 15:28:38 -0700 |
commit | da7653f0faabbe45eb2d3fd6e4b400fe003e81ae (patch) | |
tree | 1ffc5501c338839e6e05e5be3dd504c5cf0f9164 /net/qrtr/qrtr.c | |
parent | 28978713c51b0a70acf748f76f9d6d2d20dcf980 (diff) | |
download | linux-da7653f0faabbe45eb2d3fd6e4b400fe003e81ae.tar.bz2 |
net: qrtr: Add control packet definition to uapi
The QMUX protocol specification defines structure of the special control
packet messages being sent between handlers of the control port.
Add these to the uapi header, as this structure and the associated types
are shared between the kernel and all userspace handlers of control
messages.
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/qrtr/qrtr.c')
-rw-r--r-- | net/qrtr/qrtr.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/net/qrtr/qrtr.c b/net/qrtr/qrtr.c index 15981abc042c..d85ca7170b8f 100644 --- a/net/qrtr/qrtr.c +++ b/net/qrtr/qrtr.c @@ -26,18 +26,6 @@ #define QRTR_MIN_EPH_SOCKET 0x4000 #define QRTR_MAX_EPH_SOCKET 0x7fff -enum qrtr_pkt_type { - QRTR_TYPE_DATA = 1, - QRTR_TYPE_HELLO = 2, - QRTR_TYPE_BYE = 3, - QRTR_TYPE_NEW_SERVER = 4, - QRTR_TYPE_DEL_SERVER = 5, - QRTR_TYPE_DEL_CLIENT = 6, - QRTR_TYPE_RESUME_TX = 7, - QRTR_TYPE_EXIT = 8, - QRTR_TYPE_PING = 9, -}; - /** * struct qrtr_hdr - (I|R)PCrouter packet header * @version: protocol version |