diff options
Diffstat (limited to 'Kernel/LocalSocket.h')
-rw-r--r-- | Kernel/LocalSocket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/LocalSocket.h b/Kernel/LocalSocket.h index 31a62bb28c..916de48ba5 100644 --- a/Kernel/LocalSocket.h +++ b/Kernel/LocalSocket.h @@ -8,6 +8,8 @@ public: static RetainPtr<LocalSocket> create(int type); virtual ~LocalSocket() override; + virtual bool bind(const sockaddr*, socklen_t, int& error) override; + private: explicit LocalSocket(int type); |