/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-11-16 * Changed: 2022-11-16 * * */ #ifndef LS_STD_SOCKET_PARAMETER_HPP #define LS_STD_SOCKET_PARAMETER_HPP #include #include "SocketAddress.hpp" namespace ls::std::network { struct SocketParameter { ls::std::network::ProtocolFamilyType protocolFamilyType{}; ls::std::network::SocketAddress socketAddress{}; }; } #endif