1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:28:12 +00:00

Net: Override LocalSocket::class_name()

This commit is contained in:
Sergey Bugaev 2019-08-10 18:53:33 +03:00 committed by Andreas Kling
parent 908068d19d
commit 8a975ff630

View file

@ -25,6 +25,7 @@ public:
private:
explicit LocalSocket(int type);
virtual const char* class_name() const override { return "LocalSocket"; }
virtual bool is_local() const override { return true; }
bool has_attached_peer(const FileDescription&) const;