From ef9ab1fd141f4057d41f2d6ed8ab8d67c44894d5 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 9 Jan 2025 16:32:55 -0800 Subject: save state --- src/include/opcodes.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/include/opcodes.h') diff --git a/src/include/opcodes.h b/src/include/opcodes.h index ff8400f..9456574 100644 --- a/src/include/opcodes.h +++ b/src/include/opcodes.h @@ -2,6 +2,7 @@ #define OPCODES_H typedef enum { + CO_OK, CO_NOP, CO_JN, /* join */ CO_DM, @@ -27,7 +28,8 @@ typedef enum { } copcode_t; typedef enum { - SO_SUCCESS, + SO_OK, + SO_ULOG, /* update client log state */ SO_FAIL_PARSE, SO_FAIL_NOPERM, SO_FAIL_USER_TAKEN, -- cgit