ProtocolType.hpp 445 B

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