Skip to content

Commit

Permalink
ipc: add address length to socket state struct
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Jan 13, 2025
1 parent 1a98dc9 commit 1eaf394
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/include/kernel/socket.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ struct sockaddr_un {
typedef struct SocketDescriptor {
Process *process;
struct sockaddr address;
socklen_t addressLength;
lock_t lock;
bool listener;
int globalIndex;
Expand Down

0 comments on commit 1eaf394

Please sign in to comment.