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