1234567891011121314151617181920 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-12-06
- * Changed: 2020-12-06
- *
- * */
- #ifndef LS_STD_ADDRESS_FAMILY_HPP
- #define LS_STD_ADDRESS_FAMILY_HPP
- namespace ls_std {
- enum AddressFamily {
- ADDRESS_FAMILY_IP_V4 = 0,
- ADDRESS_FAMILY_IP_V6
- };
- }
- #endif
|