diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 09:36:51 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 09:36:51 +0200 |
commit | 08cd75ac4baa2814bb6154c3ad127957b3b03b7c (patch) | |
tree | 87d8bcc40d4bd536c02cbef49c91e5520a44594a /Kernel/Net/Socket.cpp | |
parent | 69a6ce90df7e0f074a714e0938cfd526076e38a3 (diff) | |
download | serenity-08cd75ac4baa2814bb6154c3ad127957b3b03b7c.zip |
Kernel: Rename FileDescriptor to FileDescription.
After reading a bunch of POSIX specs, I've learned that a file descriptor
is the number that refers to a file description, not the description itself.
So this patch renames FileDescriptor to FileDescription, and Process now has
FileDescription* file_description(int fd).
Diffstat (limited to 'Kernel/Net/Socket.cpp')
-rw-r--r-- | Kernel/Net/Socket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Net/Socket.cpp b/Kernel/Net/Socket.cpp index 8c800f8eba..ee4a78c473 100644 --- a/Kernel/Net/Socket.cpp +++ b/Kernel/Net/Socket.cpp @@ -1,4 +1,4 @@ -#include <Kernel/FileSystem/FileDescriptor.h> +#include <Kernel/FileSystem/FileDescription.h> #include <Kernel/Net/Socket.h> #include <Kernel/Net/LocalSocket.h> #include <Kernel/Net/IPv4Socket.h> @@ -142,7 +142,7 @@ static const char* to_string(SocketRole role) } } -String Socket::absolute_path(const FileDescriptor& descriptor) const +String Socket::absolute_path(const FileDescription& descriptor) const { return String::format("socket:%x (role: %s)", this, to_string(descriptor.socket_role())); } |