summaryrefslogtreecommitdiff
path: root/accel-dp
diff options
context:
space:
mode:
Diffstat (limited to 'accel-dp')
-rw-r--r--accel-dp/if_dp.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/accel-dp/if_dp.h b/accel-dp/if_dp.h
index 5c209a79..72a9d724 100644
--- a/accel-dp/if_dp.h
+++ b/accel-dp/if_dp.h
@@ -4,6 +4,7 @@
#include <stdint.h>
enum {
+ MSG_PIPE,
MSG_SOCKET,
MSG_CONNECT,
MSG_BIND,
@@ -22,6 +23,11 @@ struct msg_hdr {
uint8_t id;
};
+struct msg_pipe {
+ uint8_t id;
+ uint8_t pid;
+};
+
struct msg_socket {
uint8_t id;
int domain;
@@ -55,6 +61,7 @@ struct msg_recv {
struct msg_send {
uint8_t id;
+ uint8_t pid;
size_t len;
int flags;
socklen_t addrlen;
@@ -62,7 +69,8 @@ struct msg_send {
struct msg_ioctl {
uint8_t id;
- unsigned long request;
+ uint8_t pid;
+ unsigned int request;
char arg[0];
};