Skip to content

Commit

Permalink
Switch UIDs, GIDs, Groups to unsigned
Browse files Browse the repository at this point in the history
  • Loading branch information
yashanand1910 committed Jan 23, 2025
1 parent b1a3570 commit 5d2dc22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cedana/daemon/process.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ message Process {
string WorkingDir = 3;
repeated string Args = 4;
repeated string Env = 5;
int32 UID = 6;
int32 GID = 7;
repeated int32 Groups = 8;
uint32 UID = 6;
uint32 GID = 7;
repeated uint32 Groups = 8;
}

message ProcessState {
Expand Down Expand Up @@ -57,7 +57,7 @@ message Connection {
Addr Laddr = 4;
Addr Raddr = 5;
string Status = 6;
repeated int32 UIDs = 7;
repeated uint32 UIDs = 7;
uint32 PID = 8;
}

Expand Down

0 comments on commit 5d2dc22

Please sign in to comment.