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.

gdbudp.h 495B

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