2019-03-18 10:09:58 -03:00
|
|
|
#include <LibGUI/GTCPSocket.h>
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
|
|
GTCPSocket::GTCPSocket(GObject* parent)
|
|
|
|
|
: GSocket(GSocket::Type::TCP, parent)
|
|
|
|
|
{
|
2019-04-07 23:53:45 -03:00
|
|
|
int fd = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
|
2019-03-18 10:09:58 -03:00
|
|
|
if (fd < 0) {
|
|
|
|
|
set_error(fd);
|
|
|
|
|
} else {
|
|
|
|
|
set_fd(fd);
|
|
|
|
|
set_mode(GIODevice::ReadWrite);
|
|
|
|
|
set_error(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GTCPSocket::~GTCPSocket()
|
|
|
|
|
{
|
|
|
|
|
}
|