netutils.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /******************************************************************************
  2. *
  3. * Nagios plugins net utilities include file
  4. *
  5. * License: GPL
  6. * Copyright (c) 1999 Ethan Galstad (nagios@nagios.org)
  7. *
  8. * Last Modified: $Date$
  9. *
  10. * Description:
  11. *
  12. * This file contains common include files and function definitions
  13. * used in many of the plugins.
  14. *
  15. * License Information:
  16. *
  17. * This program is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License as published by
  19. * the Free Software Foundation; either version 2 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with this program; if not, write to the Free Software
  29. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  30. *
  31. ******************************************************************************/
  32. #include "config.h"
  33. #include <netinet/in.h>
  34. #include <arpa/inet.h>
  35. RETSIGTYPE socket_timeout_alarm_handler (int) __attribute__((noreturn));
  36. int process_tcp_request2 (const char *address, int port,
  37. const char *sbuffer, char *rbuffer, int rsize);
  38. int process_tcp_request (const char *address, int port,
  39. const char *sbuffer, char *rbuffer, int rsize);
  40. int process_udp_request (const char *address, int port,
  41. const char *sbuffer, char *rbuffer, int rsize);
  42. int process_request (const char *address, int port, int proto,
  43. const char *sbuffer, char *rbuffer, int rsize);
  44. int my_tcp_connect (const char *address, int port, int *sd);
  45. int my_udp_connect (const char *address, int port, int *sd);
  46. int is_host (const char *);
  47. int is_addr (const char *);
  48. int resolve_host_or_addr (const char *, int);
  49. int is_inet_addr (const char *);
  50. #ifdef USE_IPV6
  51. int is_inet6_addr (const char *);
  52. #endif
  53. int is_hostname (const char *);
  54. extern unsigned int socket_timeout;
  55. extern int econn_refuse_state;
  56. extern int was_refused;
  57. extern int address_family;