index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
Syscalls
/
socket.cpp
Age
Commit message (
Expand
)
Author
2021-09-05
Kernel: Make file description lookup return KResultOr
Andreas Kling
2021-09-05
Kernel: Use copy_typed_from_user<T> for fetching syscall parameters
Andreas Kling
2021-09-05
Kernel: Make copy_{from,to}_user() return KResult and use TRY()
Andreas Kling
2021-09-05
Kernel: Use TRY() in sys$socket() and friends
Andreas Kling
2021-08-29
Kernel: Rename LocalSocket::create_connected_pair() => try_*()
Andreas Kling
2021-08-29
Kernel: Rename FileDescription::create() => try_create()
Andreas Kling
2021-08-01
Kernel: Remove unused header includes
Brian Gianforcaro
2021-07-28
Kernel: Avoid file descriptor leak in Process::sys$socketpair on error
Brian Gianforcaro
2021-07-28
Kernel: Track allocated FileDescriptionAndFlag elements in each Process
Brian Gianforcaro
2021-07-28
Kernel: Make Process::FileDescriptions::allocate return KResultOr<int>
Brian Gianforcaro
2021-07-28
Kernel: Remove unused fd allocation from Process::sys$connect(..)
Brian Gianforcaro
2021-07-20
Kernel: Annotate all syscalls with VERIFY_PROCESS_BIG_LOCK_ACQUIRED
Brian Gianforcaro
2021-07-03
Everywhere: Fix some alignment issues
Daniel Bertalan
2021-06-29
Kernel: Don't copy a Vector<FileDescriptionAndFlags>
Liav A
2021-06-28
Kernel: Fix the return type for syscalls
Gunnar Beutner
2021-06-16
Kernel: Remove various other uses of ssize_t
Gunnar Beutner
2021-05-17
Kernel+Userspace: Implement the accept4() system call
Gunnar Beutner
2021-04-30
Kernel: Accepted socket file descriptors should not inherit flags
Gunnar Beutner
2021-04-29
Kernel: Harden sys$sendmsg / sys$recvmsg Vector usage against OOM.
Brian Gianforcaro
2021-04-28
Kernel+LibC: Implement the socketpair() syscall
Gunnar Beutner
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-02
Kernel: Make sockets use AK::Time
Ben Wiederhake
2021-03-01
Kernel: Make all syscall functions return KResultOr<T>
Andreas Kling
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-01-31
Kernel: Remove pledge exception for sys$getsockopt() with SO_PEERCRED
Andreas Kling
2021-01-17
Kernel: Remove a bunch of no-longer-necessary SmapDisablers
Andreas Kling
2021-01-12
AK: Simplify constructors and conversions from nullptr_t
Lenny Maiorani
2021-01-03
Kernel: Improve ProcFS behavior in low memory conditions
Tom
2020-11-30
Kernel: Move block condition evaluation out of the Scheduler
Tom
2020-09-17
Kernel+LibC+UserspaceEmulator: Add SO_TIMESTAMP, and cmsg definitions
Nico Weber
2020-09-17
Kernel: Plumb packet receive timestamp from NetworkAdapter to Socket::recvfrom
Nico Weber
2020-09-17
Kernel+LibC+UserspaceEmulator: Mostly add recvmsg(), sendmsg()
Nico Weber
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-08-19
Kernel: Use Userspace<T> for the recvfrom syscall, and Socket implementation
Brian Gianforcaro
2020-08-19
Kernel: Use Userspace<T> for the sendto syscall, and Socket implementation
Brian Gianforcaro
2020-08-10
Kernel: Use Userspace<T> for the connect syscall
Brian Gianforcaro
2020-08-10
Kernel: Use Userspace<T> for the accept syscall
Brian Gianforcaro
2020-08-10
Kernel: Use Userspace<T> for the bind syscall, and implementation
Brian Gianforcaro
2020-08-07
Kernel: Use Userspace<T> for the getsockopt syscall and Socket interface
Brian Gianforcaro
2020-08-07
Kernel: Use Userspace<T> for the setsockopt syscall
Brian Gianforcaro
2020-08-07
Kernel: Use Userspace<T> for the getsockname syscall
Brian Gianforcaro
2020-08-07
Kernel: Use Userspace<T> for the getpeername syscall
Brian Gianforcaro
2020-08-04
Kernel: Make File::write() and File::read() return KResultOr<size_t>
Andreas Kling
2020-08-03
Kernel: Consolidate timeout logic
Tom
2020-07-31
Kernel: Add missing license headers to some syscall files
Andreas Kling
2020-07-31
Kernel: Remove SmapDisabler in sys$setsockopt()
Andreas Kling
2020-07-30
Kernel: Turn Process::FileDescriptionAndFlags into a proper class
Andreas Kling
2020-07-30
Kernel: Move syscall implementations out of Process.cpp
Andreas Kling