david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/gdbudp.h
2008-06-30 19:19:48 +01:00

23 lines
495 B
C

#ifndef _GPXE_GDBUDP_H
#define _GPXE_GDBUDP_H
/** @file
*
* GDB remote debugging over UDP
*
*/
struct sockaddr_in;
struct gdb_transport;
/**
* Set up the UDP transport with network address
*
* @name network device name
* @addr IP address and UDP listen port, may be NULL and fields may be zero
* @ret transport suitable for starting the GDB stub or NULL on error
*/
struct gdb_transport *gdbudp_configure ( const char *name, struct sockaddr_in *addr );
#endif /* _GPXE_GDBUDP_H */