blob: 1a990933ad5818b8dc32b07197c4458c3f7e5835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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 */
|