mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
e7957db173
We're going to be using dedicated server socket classes instead. This was only implemented for CLocalSocket, and clients have been switched over to using CLocalServer.
15 lines
335 B
C++
15 lines
335 B
C++
#pragma once
|
|
|
|
#include <AK/Badge.h>
|
|
#include <LibCore/CSocket.h>
|
|
|
|
class CLocalServer;
|
|
|
|
class CLocalSocket final : public CSocket {
|
|
C_OBJECT(CLocalSocket)
|
|
public:
|
|
explicit CLocalSocket(CObject* parent = nullptr);
|
|
CLocalSocket(Badge<CLocalServer>, int fd, CObject* parent = nullptr);
|
|
virtual ~CLocalSocket() override;
|
|
};
|