1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:17:34 +00:00

WebContent: Add ConnectionFromClient::fd() accessor

This commit is contained in:
Andreas Kling 2022-10-05 16:02:02 +02:00
parent eb709ddd63
commit e75645bbf8

View file

@ -34,6 +34,8 @@ public:
void request_file(NonnullRefPtr<Web::FileRequest>&);
Optional<int> fd() { return socket().fd(); }
private:
explicit ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket>);