Kernel: Use Userspace<T> for the bind syscall, and implementation

This commit is contained in:
Brian Gianforcaro 2020-08-09 15:13:43 -07:00 committed by Andreas Kling
commit 02660b5d60
Notes: sideshowbarker 2024-07-19 04:05:11 +09:00
7 changed files with 7 additions and 7 deletions

View file

@ -49,7 +49,7 @@ public:
static Lockable<HashTable<IPv4Socket*>>& all_sockets();
virtual KResult close() override;
virtual KResult bind(const sockaddr*, socklen_t) override;
virtual KResult bind(Userspace<const sockaddr*>, socklen_t) override;
virtual KResult connect(FileDescription&, const sockaddr*, socklen_t, ShouldBlock = ShouldBlock::Yes) override;
virtual KResult listen(size_t) override;
virtual void get_local_address(sockaddr*, socklen_t*) override;