ProtocolFamilyType.hpp 450 B

12345678910111213141516171819202122
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-11-16
  6. * Changed: 2022-12-28
  7. *
  8. * */
  9. #ifndef LS_STD_PROTOCOL_FAMILY_TYPE_HPP
  10. #define LS_STD_PROTOCOL_FAMILY_TYPE_HPP
  11. namespace ls::std::network
  12. {
  13. enum ProtocolFamilyType
  14. {
  15. LS_STD_PROTOCOL_FAMILY_TYPE_NOT_INITIALIZED = 0,
  16. LS_STD_PROTOCOL_FAMILY_TYPE_IPV4
  17. };
  18. }
  19. #endif