ClientSocket类新增成员变量

Signed-off-by: xlei1030 <xionglei6@huawei.com>
This commit is contained in:
xlei1030 2022-03-01 14:28:15 +08:00
parent 3d2b61ba11
commit 631afe0e5d

View File

@ -90,6 +90,7 @@ public:
static constexpr int MAX_GIDS = 64;
static constexpr int APL_MAX_LEN = 32;
static constexpr int RENDER_CMD_MAX_LEN = 1024;
static constexpr int APPSPAWN_COLD_BOOT = 0x01;
struct AppProperty {
uint32_t uid; // the UNIX uid that the child process setuid() to after fork()
@ -102,6 +103,7 @@ public:
uint32_t accessTokenId;
char apl[APL_MAX_LEN];
char renderCmd[RENDER_CMD_MAX_LEN];
uint32_t flags;
};
private: