geekbrains_network_programming/lesson_01/headers/socket.h

49 lines
630 B
C
Raw Normal View History

2022-09-05 06:44:08 +00:00
/*
* socket.h
*
* Created on: 9 авг. 2022 г.
* Author: alexander
*/
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <sys/socket.h>
namespace azh
{
class Socket
{
private:
int _sockfd;
public:
Socket(int domain, int type, int protocol)
{
if ((_sockfd = socket(domain, type, protocol)) < 0)
{
perror("socket creation failed");
exit(EXIT_FAILURE);
}
}
Socket(Socket &socket)
{
_sockfd = socket._sockfd;
}
Socket()
{
_sockfd = -1;
}
operator int()
{
return _sockfd;
}
};
}