/contrib/bind9/bin/named/unix/include/named/os.h

https://bitbucket.org/freebsd/freebsd-head/ · C Header · 75 lines · 36 code · 21 blank · 18 comment · 0 complexity · 5f5344c9bb3af81c15ecf873b615ccc2 MD5 · raw file

  1. /*
  2. * Copyright (C) 2004, 2005, 2007-2009 Internet Systems Consortium, Inc. ("ISC")
  3. * Copyright (C) 1999-2002 Internet Software Consortium.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  10. * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  11. * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  12. * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  13. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  14. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15. * PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. /* $Id: os.h,v 1.31 2009/08/05 23:47:43 tbox Exp $ */
  18. #ifndef NS_OS_H
  19. #define NS_OS_H 1
  20. /*! \file */
  21. #include <isc/types.h>
  22. void
  23. ns_os_init(const char *progname);
  24. void
  25. ns_os_daemonize(void);
  26. void
  27. ns_os_opendevnull(void);
  28. void
  29. ns_os_closedevnull(void);
  30. void
  31. ns_os_chroot(const char *root);
  32. void
  33. ns_os_inituserinfo(const char *username);
  34. void
  35. ns_os_changeuser(void);
  36. void
  37. ns_os_adjustnofile(void);
  38. void
  39. ns_os_minprivs(void);
  40. FILE *
  41. ns_os_openfile(const char *filename, mode_t mode, isc_boolean_t switch_user);
  42. void
  43. ns_os_writepidfile(const char *filename, isc_boolean_t first_time);
  44. void
  45. ns_os_shutdown(void);
  46. isc_result_t
  47. ns_os_gethostname(char *buf, size_t len);
  48. void
  49. ns_os_shutdownmsg(char *command, isc_buffer_t *text);
  50. void
  51. ns_os_tzset(void);
  52. void
  53. ns_os_started(void);
  54. #endif /* NS_OS_H */