mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
19 lines
377 B
C++
19 lines
377 B
C++
#include <LibGUI/GTCPSocket.h>
|
|
#include <sys/socket.h>
|
|
|
|
GTCPSocket::GTCPSocket(CObject* parent)
|
|
: GSocket(GSocket::Type::TCP, parent)
|
|
{
|
|
int fd = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
|
|
if (fd < 0) {
|
|
set_error(fd);
|
|
} else {
|
|
set_fd(fd);
|
|
set_mode(GIODevice::ReadWrite);
|
|
set_error(0);
|
|
}
|
|
}
|
|
|
|
GTCPSocket::~GTCPSocket()
|
|
{
|
|
}
|