ip_address.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**************************************************************************/
  2. /* ip_address.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef IP_ADDRESS_H
  31. #define IP_ADDRESS_H
  32. #include "core/string/ustring.h"
  33. struct IPAddress {
  34. private:
  35. union {
  36. uint8_t field8[16];
  37. uint16_t field16[8];
  38. uint32_t field32[4];
  39. };
  40. bool valid;
  41. bool wildcard;
  42. protected:
  43. void _parse_ipv6(const String &p_string);
  44. void _parse_ipv4(const String &p_string, int p_start, uint8_t *p_ret);
  45. public:
  46. //operator Variant() const;
  47. bool operator==(const IPAddress &p_ip) const {
  48. if (p_ip.valid != valid) {
  49. return false;
  50. }
  51. if (!valid) {
  52. return false;
  53. }
  54. for (int i = 0; i < 4; i++) {
  55. if (field32[i] != p_ip.field32[i]) {
  56. return false;
  57. }
  58. }
  59. return true;
  60. }
  61. bool operator!=(const IPAddress &p_ip) const {
  62. if (p_ip.valid != valid) {
  63. return true;
  64. }
  65. if (!valid) {
  66. return true;
  67. }
  68. for (int i = 0; i < 4; i++) {
  69. if (field32[i] != p_ip.field32[i]) {
  70. return true;
  71. }
  72. }
  73. return false;
  74. }
  75. void clear();
  76. bool is_wildcard() const { return wildcard; }
  77. bool is_valid() const { return valid; }
  78. bool is_ipv4() const;
  79. const uint8_t *get_ipv4() const;
  80. void set_ipv4(const uint8_t *p_ip);
  81. const uint8_t *get_ipv6() const;
  82. void set_ipv6(const uint8_t *p_buf);
  83. operator String() const;
  84. IPAddress(const String &p_string);
  85. IPAddress(uint32_t p_a, uint32_t p_b, uint32_t p_c, uint32_t p_d, bool is_v6 = false);
  86. IPAddress() { clear(); }
  87. };
  88. #endif // IP_ADDRESS_H