summaryrefslogtreecommitdiff
path: root/Kernel/Net/LocalSocket.h
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2019-08-10 18:53:33 +0300
committerAndreas Kling <awesomekling@gmail.com>2019-08-11 16:30:43 +0200
commit8a975ff6302e4e7488da3dfb23519faedccc59c3 (patch)
tree720c9ccae4849fa7a27970beac5d443eee7c21b4 /Kernel/Net/LocalSocket.h
parent908068d19d829c418e453e1447d53c4aa2c83df6 (diff)
downloadserenity-8a975ff6302e4e7488da3dfb23519faedccc59c3.zip
Net: Override LocalSocket::class_name()
Diffstat (limited to 'Kernel/Net/LocalSocket.h')
-rw-r--r--Kernel/Net/LocalSocket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Net/LocalSocket.h b/Kernel/Net/LocalSocket.h
index fb47364f12..b764a6a117 100644
--- a/Kernel/Net/LocalSocket.h
+++ b/Kernel/Net/LocalSocket.h
@@ -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;