1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/* example.c --- Example code showing how to use IDN enabled getaddrinfo().
* Copyright (C) 2003-2025 Simon Josefsson
*
* This file is part of GNU Libidn.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#define _GNU_SOURCE 1
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <locale.h> /* setlocale() */
/*
* Compiling against IDN enabled Libc:
*
* $ gcc -o example example.c -L/usr/local/glibc/lib -Wl,-rpath,/usr/local/glibc/lib -nostdinc -I/usr/local/glibc/include -I/usr/include -I/usr/lib/gcc-lib/i486-linux/3.3.3/include
* $ CHARSET=iso-8859-1 ./example
* locale charset `iso-8859-1'
* gettaddrinfo(räksmörgås.josefsson.org):
* address `217.13.230.178'
* canonical name `178.230.13.217.in-addr.dgcsystems.net'
* $
*
* Internally the name iesg--rksmrgsa-0zap8p.josefsson.org is looked
* up in DNS.
*/
int
main (int argc, char *argv[])
{
char *in = argc > 1 ? argv[1] : "räksmörgås.josefsson.org";
struct addrinfo hints;
struct addrinfo *res = NULL;
int rc;
setlocale (LC_ALL, "");
//printf("locale charset `%s'\n", stringprep_locale_charset());
memset (&hints, 0, sizeof (hints));
hints.ai_flags = AI_CANONNAME | AI_IDN;
printf ("gettaddrinfo(%s):\n", in);
rc = getaddrinfo (in, NULL, &hints, &res);
if (rc)
printf ("gai err %d: %s\n", rc, gai_strerror (rc));
else if (res)
printf ("address `%s'\ncanonical name `%s'\n", res->ai_addr ?
/* FIXME: Use inet_ntop, so it works for IPv6 too. */
inet_ntoa (((struct sockaddr_in *) res->
ai_addr)->sin_addr) : "ERROR",
res->ai_canonname ? res->ai_canonname : "ERROR");
else
printf ("Bad magic\n");
return 0;
}
|