summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-10-05 09:16:24 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-10-05 12:16:23 -0400
commit941e27d8c1c2748e62972510f8059838fdc84dad (patch)
tree831a8b52f35c2a25db8f2ccb19d922747be4f31d /src/msg.fbs
parent6c42ded0970826aaf424f3ae572cb35a4ff212dc (diff)
Implement closeRead/closeWrite using TcpStream::shutdown (#903)
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index 9479d7892..16d10cdff 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -35,6 +35,7 @@ union Any {
Write,
WriteRes,
Close,
+ Shutdown,
Listen,
ListenRes,
Accept,
@@ -290,6 +291,11 @@ table Close {
rid: int;
}
+table Shutdown {
+ rid: int;
+ how: uint;
+}
+
table Listen {
network: string;
address: string;