summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC/ServerConnection.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibIPC/ServerConnection.h')
-rw-r--r--Userland/Libraries/LibIPC/ServerConnection.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibIPC/ServerConnection.h b/Userland/Libraries/LibIPC/ServerConnection.h
index f90fddccfc..5912bc006b 100644
--- a/Userland/Libraries/LibIPC/ServerConnection.h
+++ b/Userland/Libraries/LibIPC/ServerConnection.h
@@ -45,15 +45,10 @@ public:
}
ASSERT(this->socket().is_connected());
-
- this->initialize_peer_info();
}
virtual void handshake() = 0;
- pid_t server_pid() const { return this->peer_pid(); }
- void set_server_pid(pid_t pid) { this->set_peer_pid(pid); }
-
void set_my_client_id(int id) { m_my_client_id = id; }
int my_client_id() const { return m_my_client_id; }