geekbrains_network_programming/lesson_01/headers/socket.h

49 lines
630 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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;
}
};
}