1 /* $Id: testgetifaddr.c,v 1.1 2008/10/09 11:28:44 nanard Exp $ */
3 * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
4 * (c) 2006-2008 Thomas Bernard
5 * This software is subject to the conditions detailed
6 * in the LICENCE file provided within the distribution */
10 int main(int argc
, char * * argv
) {
13 fprintf(stderr
, "Usage:\t%s interface_name\n", argv
[0]);
16 if(getifaddr(argv
[1], addr
, sizeof(addr
)) < 0) {
17 fprintf(stderr
, "Cannot get address for interface %s.\n", argv
[1]);
20 printf("Interface %s has IP address %s.\n", argv
[1], addr
);