getdomainname.c
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)getdomainname.c 1.13 99/08/30 Copyright 1995 J. Schilling */
  2. #ifndef lint
  3. static char sccsid[] =
  4. "@(#)getdomainname.c 1.13 99/08/30 Copyright 1995 J. Schilling";
  5. #endif
  6. /*
  7.  * Copyright (c) 1995 J. Schilling
  8.  */
  9. /*
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2, or (at your option)
  13.  * any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; see the file COPYING.  If not, write to
  22.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24. #include <mconfig.h>
  25. #include <standard.h>
  26. #include <stdxlib.h>
  27. #ifdef HAVE_SYS_SYSTEMINFO_H
  28. #include <sys/systeminfo.h>
  29. #endif
  30. #include <libport.h>
  31. #ifndef HAVE_GETDOMAINNAME
  32. EXPORT int getdomainname __PR((char *name, int namelen));
  33. #endif
  34. #if !defined(HAVE_GETDOMAINNAME) && defined(SI_SRPC_DOMAIN)
  35. EXPORT int
  36. getdomainname(name, namelen)
  37. char *name;
  38. int namelen;
  39. {
  40. if (sysinfo(SI_SRPC_DOMAIN, name, namelen) < 0)
  41. return (-1);
  42. return (0);
  43. }
  44. #endif