mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
inet: Implement inet_ntoa on top of inet_ntop
Checked on aarch64-linux-gnu and x86_64-linux-gnu. Reviewed-by: Collin Funk <collin.funk1@gmail.com> Reviewed-by: DJ Delorie <dj@redhat.com>
This commit is contained in:
@@ -23,15 +23,12 @@
|
||||
/* The interface of this function is completely stupid, it requires a
|
||||
static buffer. We relax this a bit in that we allow one buffer for
|
||||
each thread. */
|
||||
static __thread char buffer[18];
|
||||
static __thread char buffer[INET_ADDRSTRLEN];
|
||||
|
||||
|
||||
char *
|
||||
inet_ntoa (struct in_addr in)
|
||||
{
|
||||
unsigned char *bytes = (unsigned char *) ∈
|
||||
__snprintf (buffer, sizeof (buffer), "%d.%d.%d.%d",
|
||||
bytes[0], bytes[1], bytes[2], bytes[3]);
|
||||
|
||||
__inet_ntop (AF_INET, &in, buffer, sizeof buffer);
|
||||
return buffer;
|
||||
}
|
||||
|
Reference in New Issue
Block a user