diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2021-01-19 01:33:23 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-15 17:32:56 +0100 |
commit | 1e79c0461612807eeb0783665fba4e409c56462e (patch) | |
tree | 68ff10627f2cb5bf0f40c584a804a24c45eb9c86 /Kernel/Net | |
parent | 2db4ab80a2653b14e5b41cc75a26669cf165f7ec (diff) | |
download | serenity-1e79c0461612807eeb0783665fba4e409c56462e.zip |
Kernel+LibC: Stub out SO_{SND_RCV}BUF
Diffstat (limited to 'Kernel/Net')
-rw-r--r-- | Kernel/Net/LocalSocket.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/Net/LocalSocket.cpp b/Kernel/Net/LocalSocket.cpp index 642bc62156..6ce81118ac 100644 --- a/Kernel/Net/LocalSocket.cpp +++ b/Kernel/Net/LocalSocket.cpp @@ -374,6 +374,10 @@ KResult LocalSocket::getsockopt(FileDescription& description, int level, int opt return EFAULT; switch (option) { + case SO_SNDBUF: + TODO(); + case SO_RCVBUF: + TODO(); case SO_PEERCRED: { if (size < sizeof(ucred)) return EINVAL; |