Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ping.h 281B

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 );
  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 */