summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2013-10-21 22:05:29 -0400
committerRich Felker <dalias@aerifal.cx>2013-10-21 22:05:29 -0400
commitbb93ac335846424662212eea840859e7f0cc16b5 (patch)
treeff51e36d655394f7a6c7c573cc295a49efa6f474 /src
parent8f0359605a24277e3d67f2b9e3477437a7d38706 (diff)
downloadmusl-bb93ac335846424662212eea840859e7f0cc16b5.tar.gz
split inet_addr and inet_ntoa back into their own files
despite being practically deprecated, these functions are still part of the standard and thus cannot reside in a file that also contains namespace pollution. this reverts some of the changes made in commit e40f48a421a9176e3e298b5bac75f0355b219e58.
Diffstat (limited to 'src')
-rw-r--r--src/network/inet_addr.c11
-rw-r--r--src/network/inet_legacy.c16
-rw-r--r--src/network/inet_ntoa.c10
3 files changed, 21 insertions, 16 deletions
diff --git a/src/network/inet_addr.c b/src/network/inet_addr.c
new file mode 100644
index 00000000..84137281
--- /dev/null
+++ b/src/network/inet_addr.c
@@ -0,0 +1,11 @@
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include "__dns.h"
+
+in_addr_t inet_addr(const char *p)
+{
+ struct sockaddr_in sin;
+ if (__ipparse(&sin, AF_INET, p)) return -1;
+ return sin.sin_addr.s_addr;
+}
diff --git a/src/network/inet_legacy.c b/src/network/inet_legacy.c
index e802557b..9907c541 100644
--- a/src/network/inet_legacy.c
+++ b/src/network/inet_legacy.c
@@ -1,16 +1,8 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
-#include <stdio.h>
#include "__dns.h"
-in_addr_t inet_addr(const char *p)
-{
- struct sockaddr_in sin;
- if (__ipparse(&sin, AF_INET, p)) return -1;
- return sin.sin_addr.s_addr;
-}
-
in_addr_t inet_network(const char *p)
{
return ntohl(inet_addr(p));
@@ -21,14 +13,6 @@ int inet_aton(const char *cp, struct in_addr *inp)
return inet_pton(AF_INET, cp, (void *)inp) > 0;
}
-char *inet_ntoa(struct in_addr in)
-{
- static char buf[16];
- unsigned char *a = (void *)&in;
- snprintf(buf, sizeof buf, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
- return buf;
-}
-
struct in_addr inet_makeaddr(int net, int host)
{
uint32_t n = net, h = host;
diff --git a/src/network/inet_ntoa.c b/src/network/inet_ntoa.c
new file mode 100644
index 00000000..71411e0b
--- /dev/null
+++ b/src/network/inet_ntoa.c
@@ -0,0 +1,10 @@
+#include <arpa/inet.h>
+#include <stdio.h>
+
+char *inet_ntoa(struct in_addr in)
+{
+ static char buf[16];
+ unsigned char *a = (void *)&in;
+ snprintf(buf, sizeof buf, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
+ return buf;
+}