mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
be2b585ca6
These will be useful for implementing server sockets.
11 lines
252 B
C++
11 lines
252 B
C++
#include <LibCore/CSocket.h>
|
|
|
|
class CTCPSocket final : public CSocket {
|
|
C_OBJECT(CTCPSocket)
|
|
public:
|
|
explicit CTCPSocket(CObject* parent = nullptr);
|
|
virtual ~CTCPSocket() override;
|
|
|
|
virtual bool bind(const CSocketAddress&) override;
|
|
};
|