diff --git a/posix/subsystem/src/un-socket.cpp b/posix/subsystem/src/un-socket.cpp index cef30afd1..317a66fe3 100644 --- a/posix/subsystem/src/un-socket.cpp +++ b/posix/subsystem/src/un-socket.cpp @@ -535,6 +535,13 @@ struct OpenFile : File { co_return {}; } + async::result> setSocketOption(int layer, int number, + std::vector optbuf) override { + (void)optbuf; + printf("posix un-socket: unhandled setsockopt layer %d number %d\n", layer, number); + co_return protocols::fs::Error::invalidProtocolOption; + } + async::result ioctl(Process *, uint32_t id, helix_ng::RecvInlineResult msg, helix::UniqueLane conversation) override { managarm::fs::GenericIoctlReply resp;