diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-07-17 19:46:06 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-17 20:16:44 +0200 |
commit | 9c8dd836fc079666f3dfa92ae23c31d7c46bd769 (patch) | |
tree | 3346e43c9a69aa71f592b5da26df6212927dfd95 /Servers/AudioServer/ASClientConnection.cpp | |
parent | 2177594c960976d82c5eb6fac3f90f3345d37854 (diff) | |
download | serenity-9c8dd836fc079666f3dfa92ae23c31d7c46bd769.zip |
Rename new IPC headers & classes
Sticking these in a namespace allows us to use a more generic
("Connection") term without clashing, which is way easier to understand
than to try to come up with unique names for both.
Diffstat (limited to 'Servers/AudioServer/ASClientConnection.cpp')
-rw-r--r-- | Servers/AudioServer/ASClientConnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/AudioServer/ASClientConnection.cpp b/Servers/AudioServer/ASClientConnection.cpp index d34de74eaa..acb467ddbc 100644 --- a/Servers/AudioServer/ASClientConnection.cpp +++ b/Servers/AudioServer/ASClientConnection.cpp @@ -14,7 +14,7 @@ #include <stdio.h> ASClientConnection::ASClientConnection(int fd, int client_id, ASMixer& mixer) - : CIPCServerSideClient(fd, client_id) + : Connection(fd, client_id) , m_mixer(mixer) { } |