avoid some overlong lines from posix urls, etc.
[gnulib.git] / doc / posix-functions / inet_ntoa.texi
1 @node inet_ntoa
2 @section @code{inet_ntoa}
3 @findex inet_ntoa
4
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_ntoa.html}
6
7 Gnulib module: ---
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @end itemize
12
13 Portability problems not fixed by Gnulib:
14 @itemize
15 @item
16 This function is missing on some platforms:
17 mingw.
18 @item
19 The @code{inet_ntoa} function need not be reentrant, and consequently
20 is not required to be thread safe.  Implementations of
21 @code{inet_ntoa} typically write the time stamp into static buffer.
22 If two threads call @code{inet_ntoa} at roughly the same time, you
23 might end up with the wrong date in one of the threads, or some
24 undefined string.
25 @end itemize
26
27 Note: @code{inet_ntoa} is specific for @acronym{IPv4} addresses.
28 A protocol independent function is @code{inet_ntop}.