You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ping.h 289B

123456789101112131415161718
  1. #ifndef _IPXE_PING_H
  2. #define _IPXE_PING_H
  3. /** @file
  4. *
  5. * ICMP ping protocol
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #include <ipxe/iobuf.h>
  10. #include <ipxe/tcpip.h>
  11. extern int ping_rx ( struct io_buffer *iobuf,
  12. struct sockaddr_tcpip *st_src );
  13. #endif /* _IPXE_PING_H */