ladybird/Servers/ProtocolServer
Andreas Kling f93c0dc489 LibIPC: Get client/server PIDs using getsockopt(SO_PEERCRED)
Instead of passing the PIDs back and forth in a handshake "Greet"
message, just use getsockopt(SO_PEERCRED) on both sides to get the same
information from the kernel.

This is a nice little simplification of the IPC protocol, although it
does not get rid of the handshake since we still have to pass the
"client ID" from the server to each client so they know how to refer
to themselves. This might not be necessary and we might be able to get
rid of this later on.
2019-12-06 18:39:59 +01:00
..
Download.cpp
Download.h
HttpDownload.cpp ProtocolServer: Don't crash on failed request 2019-11-30 11:02:14 +01:00
HttpDownload.h
HttpProtocol.cpp
HttpProtocol.h
main.cpp LibIPC: Rename base classes to IClientConnection and IServerConnection 2019-12-02 11:11:05 +01:00
Makefile LibCore: Move puff() from LibDraw to LibCore 2019-11-23 23:43:37 +01:00
Protocol.cpp
Protocol.h
ProtocolClient.ipc
ProtocolServer.ipc LibIPC: Get client/server PIDs using getsockopt(SO_PEERCRED) 2019-12-06 18:39:59 +01:00
PSClientConnection.cpp LibIPC: Get client/server PIDs using getsockopt(SO_PEERCRED) 2019-12-06 18:39:59 +01:00
PSClientConnection.h LibIPC: Rename base classes to IClientConnection and IServerConnection 2019-12-02 11:11:05 +01:00