aboutsummaryrefslogtreecommitdiff
path: root/core/io/ip_address.h
diff options
context:
space:
mode:
authorRémi Verschelde2017-03-05 16:44:50 +0100
committerRémi Verschelde2017-03-05 16:44:50 +0100
commit5dbf1809c6e3e905b94b8764e99491e608122261 (patch)
tree5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /core/io/ip_address.h
parent45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff)
downloadgodot-5dbf180.tar.gz
godot-5dbf180.tar.zst
godot-5dbf180.zip
A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
Diffstat (limited to 'core/io/ip_address.h')
-rw-r--r--core/io/ip_address.h23
1 files changed, 10 insertions, 13 deletions
diff --git a/core/io/ip_address.h b/core/io/ip_address.h
index 257836601..52d6974d5 100644
--- a/core/io/ip_address.h
+++ b/core/io/ip_address.h
@@ -34,7 +34,6 @@
struct IP_Address {
private:
-
union {
uint8_t field8[16];
uint16_t field16[8];
@@ -45,31 +44,31 @@ private:
bool wildcard;
protected:
- void _parse_ipv6(const String& p_string);
- void _parse_ipv4(const String& p_string, int p_start, uint8_t* p_ret);
+ void _parse_ipv6(const String &p_string);
+ void _parse_ipv4(const String &p_string, int p_start, uint8_t *p_ret);
public:
//operator Variant() const;
- bool operator==(const IP_Address& p_ip) const {
+ bool operator==(const IP_Address &p_ip) const {
if (p_ip.valid != valid) return false;
if (!valid) return false;
- for (int i=0; i<4; i++)
+ for (int i = 0; i < 4; i++)
if (field32[i] != p_ip.field32[i])
return false;
return true;
}
- bool operator!=(const IP_Address& p_ip) const {
+ bool operator!=(const IP_Address &p_ip) const {
if (p_ip.valid != valid) return true;
if (!valid) return true;
- for (int i=0; i<4; i++)
+ for (int i = 0; i < 4; i++)
if (field32[i] != p_ip.field32[i])
return true;
return false;
}
void clear();
- bool is_wildcard() const {return wildcard;}
- bool is_valid() const {return valid;}
+ bool is_wildcard() const { return wildcard; }
+ bool is_valid() const { return valid; }
bool is_ipv4() const;
const uint8_t *get_ipv4() const;
void set_ipv4(const uint8_t *p_ip);
@@ -78,11 +77,9 @@ public:
void set_ipv6(const uint8_t *buf);
operator String() const;
- IP_Address(const String& p_string);
- IP_Address(uint32_t p_a,uint32_t p_b,uint32_t p_c,uint32_t p_d, bool is_v6=false);
+ IP_Address(const String &p_string);
+ IP_Address(uint32_t p_a, uint32_t p_b, uint32_t p_c, uint32_t p_d, bool is_v6 = false);
IP_Address() { clear(); }
};
-
-
#endif // IP_ADDRESS_H