mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 12:15:09 +00:00
10 lines
252 B
C++
10 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;
|
|
};
|