X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetaddrinfo.h;h=955833a6ca7c087965a6ad0eb844db4533f0deab;hb=d49e12fd465868c5fb45f1cf5cfb701843f9bc69;hp=423e9c161699dd9452dc59266c8ce9f306253b4b;hpb=a41a3b24a380fa1e014b574760f06029710b70d4;p=gnulib.git diff --git a/lib/getaddrinfo.h b/lib/getaddrinfo.h index 423e9c161..955833a6c 100644 --- a/lib/getaddrinfo.h +++ b/lib/getaddrinfo.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef GETADDRINFO_H # define GETADDRINFO_H @@ -72,16 +72,22 @@ struct addrinfo # endif /* Translate name of a service location and/or a service name to set of - socket addresses. */ + socket addresses. + For more details, see the POSIX:2001 specification + . */ extern int getaddrinfo (const char *restrict nodename, const char *restrict servname, const struct addrinfo *restrict hints, struct addrinfo **restrict res); -/* Free `addrinfo' structure AI including associated storage. */ +/* Free `addrinfo' structure AI including associated storage. + For more details, see the POSIX:2001 specification + . */ extern void freeaddrinfo (struct addrinfo *ai); -/* Convert error return from getaddrinfo() to a string. */ +/* Convert error return from getaddrinfo() to a string. + For more details, see the POSIX:2001 specification + . */ extern const char *gai_strerror (int ecode); # endif