/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2022-11-17 * Changed: 2022-11-17 * * */ #ifndef LS_STD_PROTOCOL_HPP #define LS_STD_PROTOCOL_HPP namespace ls::std::network { struct Protocol { int unixProtocol{}; }; } #endif