summaryrefslogtreecommitdiff
path: root/src/Erebos/Network/ifaddrs.h
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2025-07-10 19:27:17 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2025-07-10 19:27:17 +0200
commita41ef4c4b12f1904617c08a6ba616737d14478c6 (patch)
treed4e967282fe2265bbce92bcbad0a91244743971f /src/Erebos/Network/ifaddrs.h
parent1b191a5624039dd743304bf408ee2245d1b8e97e (diff)
Use “erebos_” prefix for all non-static C functionsHEADmaster
Diffstat (limited to 'src/Erebos/Network/ifaddrs.h')
-rw-r--r--src/Erebos/Network/ifaddrs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Erebos/Network/ifaddrs.h b/src/Erebos/Network/ifaddrs.h
index 2ee45a7..2b3c014 100644
--- a/src/Erebos/Network/ifaddrs.h
+++ b/src/Erebos/Network/ifaddrs.h
@@ -13,6 +13,6 @@ struct InetAddress
uint8_t addr[16];
} __attribute__((packed));
-uint32_t * join_multicast(int fd, size_t * count);
-struct InetAddress * local_addresses( size_t * count );
-uint32_t * broadcast_addresses(void);
+uint32_t * erebos_join_multicast(int fd, size_t * count);
+struct InetAddress * erebos_local_addresses( size_t * count );
+uint32_t * erebos_broadcast_addresses(void);