mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 06:07:59 +00:00
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;
|
|
};
|