diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-08-10 19:10:36 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-08-11 16:30:43 +0200 |
commit | dadf6337efd2eb0d28c5738c10ac36511bc0fadb (patch) | |
tree | 6c9736efbce46466e4b5466ff8180c69fe863066 /Kernel/Net/IPv4Socket.h | |
parent | 1d033914885dc36b5bf2becf4281f482ac091f90 (diff) | |
download | serenity-dadf6337efd2eb0d28c5738c10ac36511bc0fadb.zip |
Kernel: Customize absolute_path() for more file types
Diffstat (limited to 'Kernel/Net/IPv4Socket.h')
-rw-r--r-- | Kernel/Net/IPv4Socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Net/IPv4Socket.h b/Kernel/Net/IPv4Socket.h index dbdc717ee4..ced971f1cf 100644 --- a/Kernel/Net/IPv4Socket.h +++ b/Kernel/Net/IPv4Socket.h @@ -45,6 +45,8 @@ public: IPv4SocketTuple tuple() const { return IPv4SocketTuple(m_local_address, m_local_port, m_peer_address, m_peer_port); } + String absolute_path(const FileDescription& description) const override; + protected: IPv4Socket(int type, int protocol); virtual const char* class_name() const override { return "IPv4Socket"; } |