home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / sh-utils-1.12-src.tgz / tar.out / fsf / sh-utils / src / hostname.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  117 lines

  1. /* hostname - set or print the name of current host system
  2.    Copyright (C) 1994 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Jim Meyering <meyering@comco.com> */
  19.  
  20. #include <config.h>
  21. #include <stdio.h>
  22. #include <sys/types.h>
  23.  
  24. #include "system.h"
  25. #include "version.h"
  26. #include "long-options.h"
  27.  
  28. #if !defined(HAVE_SETHOSTNAME) && defined(HAVE_SYSINFO) && \
  29.      defined (HAVE_SYS_SYSTEMINFO_H) && defined(HAVE_LIMITS_H)
  30. #include <limits.h>
  31. #include <sys/systeminfo.h>
  32.  
  33. int
  34. sethostname (name, namelen)
  35.      char *name;
  36.      int namelen;
  37. {
  38.   /* Using sysinfo() is the SVR4 mechanism to set a hostname. */
  39.   int result;
  40.   
  41.   result = sysinfo (SI_SET_HOSTNAME, name, namelen);
  42.   
  43.   return (result == -1 ? result : 0);
  44. }
  45.  
  46. #define HAVE_SETHOSTNAME 1  /* Now we have it... */
  47. #endif
  48.  
  49. void error ();
  50. char *xgethostname ();
  51.  
  52. /* The name this program was run with. */
  53. char *program_name;
  54.  
  55. static void
  56. usage (status)
  57.      int status;
  58. {
  59.   if (status != 0)
  60.     fprintf (stderr, "Try `%s --help' for more information.\n",
  61.          program_name);
  62.   else
  63.     {
  64.       printf ("\
  65. Usage: %s [NAME]\n\
  66.   or:  %s OPTION\n\
  67. \n\
  68.   --help      display this help and exit\n\
  69.   --version   output version information and exit\n\
  70. "
  71.              , program_name, program_name);
  72.     }
  73.   exit (status);
  74. }
  75.  
  76. main (argc, argv)
  77.      int argc;
  78.      char **argv;
  79. {
  80.   char *hostname;
  81.  
  82.   program_name = argv[0];
  83.  
  84.   parse_long_options (argc, argv, "hostname", version_string, usage);
  85.  
  86. #ifdef HAVE_SETHOSTNAME
  87.   if (argc == 2)
  88.     {
  89.       int err;
  90.  
  91.       /* Set hostname to argv[1].  */
  92.       err = sethostname (argv[1], strlen (argv[1]));
  93.       if (err != 0)
  94.     error (1, errno, "%s", argv[1]);
  95.       exit (0);
  96.     }
  97. #else
  98.   if (argc == 2)
  99.     error (1, 0, "cannot set hostname; this system lacks the functionality");
  100. #endif
  101.  
  102.   if (argc == 1)
  103.     {
  104.       hostname = xgethostname ();
  105.       if (hostname == NULL)
  106.     error (1, errno, "cannot determine hostname");
  107.       printf ("%s\n", hostname);
  108.     }
  109.   else
  110.     {
  111.       error (2, 0, "too many arguments");
  112.       usage (1);
  113.     }
  114.  
  115.   exit (0);
  116. }
  117.