|
@@ -0,0 +1,21 @@
|
|
|
+/*
|
|
|
+ * Author: Patrick-Christopher Mattulat
|
|
|
+ * Company: Lynar Studios
|
|
|
+ * E-Mail: webmaster@lynarstudios.com
|
|
|
+ * Created: 2020-11-16
|
|
|
+ * Changed: 2022-11-16
|
|
|
+ *
|
|
|
+ * */
|
|
|
+
|
|
|
+#ifndef LS_STD_SOCKET_TYPES_HPP
|
|
|
+#define LS_STD_SOCKET_TYPES_HPP
|
|
|
+
|
|
|
+#include <string>
|
|
|
+
|
|
|
+namespace ls::std::core::type
|
|
|
+{
|
|
|
+ using port = unsigned short;
|
|
|
+ using ip_address = ::std::string;
|
|
|
+}
|
|
|
+
|
|
|
+#endif
|