1 /* vi: set sw=4 ts=4: */
3 * $Id: hostname.c,v 1.16 2000/12/07 19:56:48 markw Exp $
4 * Mini hostname implementation for busybox
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
8 * adjusted by Erik Andersen <andersee@debian.org> to remove
9 * use of long options and GNU getopt. Improved the usage info.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include <arpa/inet.h>
33 void do_sethostname(char *s, int isfile)
41 if (sethostname(s, strlen(s)) < 0) {
43 error_msg("you must be root to change the hostname\n");
45 perror("sethostname");
52 if (buf[strlen(buf) - 1] == '\n')
53 buf[strlen(buf) - 1] = 0;
54 if (sethostname(buf, strlen(buf)) < 0) {
55 perror("sethostname");
61 int hostname_main(int argc, char **argv)
67 char *filename = NULL;
72 usage(hostname_usage);
74 while (--argc > 0 && **(++argv) == '-') {
75 while (*(++(*argv))) {
88 usage(hostname_usage);
93 if (strcmp(++(*argv), "file") || --argc ==0 ) {
94 usage(hostname_usage);
99 usage(hostname_usage);
101 if (filename != NULL)
107 do_sethostname(*argv, 0);
108 } else if (filename != NULL) {
109 do_sethostname(filename, 1);
111 gethostname(buf, 255);
113 s = strchr(buf, '.');
118 } else if (opt_domain) {
119 s = strchr(buf, '.');
120 printf("%s\n", (s ? s + 1 : ""));
122 h = gethostbyname(buf);
124 printf("Host not found\n");
127 printf("%s\n", inet_ntoa(*(struct in_addr *) (h->h_addr)));