diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-13 12:20:49 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-13 12:20:49 +0200 |
commit | 18d5abc981faf2d76ced42bad5cb69aa83128832 (patch) | |
tree | 69e29a37eb4552a45b3a0be85f547f5f42f02920 | |
parent | 8ab6256c3b5a2cde7144b3a5e1ef488b7bce6227 (diff) | |
download | netapp-18d5abc981faf2d76ced42bad5cb69aa83128832.tar.gz netapp-18d5abc981faf2d76ced42bad5cb69aa83128832.zip |
add precision to protocol description
-rw-r--r-- | src/send.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/send.rs b/src/send.rs index 2606434..0ca62fd 100644 --- a/src/send.rs +++ b/src/send.rs @@ -28,6 +28,7 @@ use crate::stream::*; // - if error: // - u8: error kind, encoded using error::io_errorkind_to_u8 // - rest: error message +// - absent for cancel message pub(crate) type RequestID = u32; pub(crate) type ChunkLength = u16; |