aboutsummaryrefslogtreecommitdiffstats
path: root/hostnames.c
diff options
context:
space:
mode:
authorEliteTK <tomasz.kramkowski@gmail.com>2014-07-10 22:36:56 +0100
committerEliteTK <tomasz.kramkowski@gmail.com>2014-07-10 22:36:56 +0100
commitb60441758f9832a67f60e51a4ee92d16b166b9fb (patch)
tree7388adc9743181457834cc5eed95e3c452266ab0 /hostnames.c
parenta26f2837166f7232d13322e013883ed003d46f27 (diff)
parenta8609ccd901b1942e862c14205026d841e640add (diff)
downloadc-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.tar.gz
c-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.tar.xz
c-stuff-b60441758f9832a67f60e51a4ee92d16b166b9fb.zip
Merge branch 'master' of https://github.com/EliteTK/c-stuff
Conflicts: xcb.c
Diffstat (limited to 'hostnames.c')
-rw-r--r--hostnames.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/hostnames.c b/hostnames.c
new file mode 100644
index 0000000..33729e0
--- /dev/null
+++ b/hostnames.c
@@ -0,0 +1,27 @@
+#include <stdio.h>
+#include <netdb.h>
+#include <arpa/inet.h>
+#include <stdlib.h>
+
+int main(int argc, char **argv)
+{
+ if (argc != 2) {
+ fprintf(stderr, "Usage: %s <domain-name>\n", argv[0]);
+ exit(1);
+ }
+
+ struct hostent* he;
+
+ he = gethostbyname(argv[1]);
+
+ if (!he) {
+ fputs("Error, could not resolve.\n", stderr);
+ exit(1);
+ }
+
+ char str[INET_ADDRSTRLEN];
+ inet_ntop(AF_INET, he->h_addr, str, INET_ADDRSTRLEN);
+
+ printf("%s\n", str);
+ return 0;
+}