mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-10-27 05:10:16 -04:00
a8824b7f95
svn path=/trunk/avl/; revision=1997
18 lines
363 B
C
18 lines
363 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "resolver.h"
|
|
|
|
int main()
|
|
{
|
|
char buff[1024];
|
|
|
|
resolver_initialize();
|
|
|
|
printf("I got %s, when looking up %s.\n", resolver_getip("bach.greenwitch.com", buff, 1024), "bach.greenwitch.com");
|
|
printf("I got %s, when looking up %s.\n", resolver_getname("207.181.249.14", buff, 1024), "207.181.249.14");
|
|
|
|
return 0;
|
|
}
|
|
|