iPXE
gdbudp.h
Go to the documentation of this file.
1#ifndef _IPXE_GDBUDP_H
2#define _IPXE_GDBUDP_H
3
4/** @file
5 *
6 * GDB remote debugging over UDP
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( FORBIDDEN );
12
13struct sockaddr_in;
14struct gdb_transport;
15
16/**
17 * Set up the UDP transport with network address
18 *
19 * @name network device name
20 * @addr IP address and UDP listen port, may be NULL and fields may be zero
21 * @ret transport suitable for starting the GDB stub or NULL on error
22 */
23struct gdb_transport *gdbudp_configure ( const char *name, struct sockaddr_in *addr );
24
25#endif /* _IPXE_GDBUDP_H */
const char * name
Definition ath9k_hw.c:1986
uint32_t addr
Buffer address.
Definition dwmac.h:9
struct gdb_transport * gdbudp_configure(const char *name, struct sockaddr_in *addr)
Definition gdbudp.c:214
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
A transport mechanism for the GDB protocol.
Definition gdbstub.h:21
IPv4 socket address.
Definition in.h:85