1#ifndef NETWORK_SOCKET_H
2#define NETWORK_SOCKET_H
7#include "./communicator.h"
9namespace AsyncBsdSocketLib
Communication method (i.e., network sockets and named pipes)
Definition: communicator.h:10
TCP/IP network socket.
Definition: network_socket.h:13
const uint16_t Port
Listening/Connecting port number for server/client.
Definition: network_socket.h:19
const std::string IpAddress
Listening/Connecting IP address for server/client.
Definition: network_socket.h:16
NetworkSocket(std::string ipAddress, uint16_t port)
Constructor.