netutils.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. * $Id$
  32. *
  33. ******************************************************************************/
  34. #include "config.h"
  35. #include <netinet/in.h>
  36. #include <arpa/inet.h>
  37. RETSIGTYPE socket_timeout_alarm_handler (int) __attribute__((noreturn));
  38. /* process_request and wrapper macros */
  39. #define process_tcp_request(addr, port, sbuf, rbuf, rsize) \
  40. process_request(addr, port, IPPROTO_TCP, sbuf, rbuf, rsize)
  41. #define process_udp_request(addr, port, sbuf, rbuf, rsize) \
  42. process_request(addr, port, IPPROTO_UDP, sbuf, rbuf, rsize)
  43. int process_tcp_request2 (const char *address, int port,
  44. const char *sbuffer, char *rbuffer, int rsize);
  45. int process_request (const char *address, int port, int proto,
  46. const char *sbuffer, char *rbuffer, int rsize);
  47. /* my_connect and wrapper macros */
  48. #define my_tcp_connect(addr, port, s) my_connect(addr, port, s, IPPROTO_TCP)
  49. #define my_udp_connect(addr, port, s) my_connect(addr, port, s, IPPROTO_UDP)
  50. int my_connect(const char *address, int port, int *sd, int proto);
  51. /* send_request and wrapper macros */
  52. #define send_tcp_request(s, sbuf, rbuf, rsize) \
  53. send_request(s, IPPROTO_TCP, sbuf, rbuf, rsize)
  54. #define send_udp_request(s, sbuf, rbuf, rsize) \
  55. send_request(s, IPPROTO_UDP, sbuf, rbuf, rsize)
  56. int send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int recv_size);
  57. /* "is_*" wrapper macros and functions */
  58. int is_host (const char *);
  59. int is_addr (const char *);
  60. int resolve_host_or_addr (const char *, int);
  61. #define is_inet_addr(addr) resolve_host_or_addr(addr, AF_INET)
  62. #ifdef USE_IPV6
  63. # define is_inet6_addr(addr) resolve_host_or_addr(addr, AF_INET6)
  64. # define is_hostname(addr) resolve_host_or_addr(addr, address_family)
  65. #else
  66. # define is_hostname(addr) resolve_host_or_addr(addr, AF_INET)
  67. #endif
  68. extern unsigned int socket_timeout;
  69. extern int econn_refuse_state;
  70. extern int was_refused;
  71. extern int address_family;