Add SqeOpcode::CloseMsg.

This commit is contained in:
4lDO2
2025-02-21 14:41:37 +01:00
parent 3d786423f1
commit ee30da9700
+2
View File
@@ -127,6 +127,7 @@ pub enum Opcode {
Cancel = 25, // @tag
Getdents = 26,
CloseMsg = 27,
}
impl Opcode {
@@ -164,6 +165,7 @@ impl Opcode {
25 => Cancel,
26 => Getdents,
27 => CloseMsg,
_ => return None,
})