Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

gdbudp.h 536B

123456789101112131415161718192021222324
  1. #ifndef _IPXE_GDBUDP_H
  2. #define _IPXE_GDBUDP_H
  3. /** @file
  4. *
  5. * GDB remote debugging over UDP
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. struct sockaddr_in;
  10. struct gdb_transport;
  11. /**
  12. * Set up the UDP transport with network address
  13. *
  14. * @name network device name
  15. * @addr IP address and UDP listen port, may be NULL and fields may be zero
  16. * @ret transport suitable for starting the GDB stub or NULL on error
  17. */
  18. struct gdb_transport *gdbudp_configure ( const char *name, struct sockaddr_in *addr );
  19. #endif /* _IPXE_GDBUDP_H */