diff options
| author | Michael Brown | 2006-07-19 19:29:18 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-07-19 19:29:18 +0200 |
| commit | 76070cd226f96209522e04ff7082205db9a4bbcf (patch) | |
| tree | 6fd918e57ba845ad54f93e192a40a4123f2b243a | |
| parent | Beginnings of DHCP protocol implementation (diff) | |
| download | ipxe-76070cd226f96209522e04ff7082205db9a4bbcf.tar.gz ipxe-76070cd226f96209522e04ff7082205db9a4bbcf.tar.xz ipxe-76070cd226f96209522e04ff7082205db9a4bbcf.zip | |
Added missing prototype
| -rw-r--r-- | src/include/gpxe/udp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/gpxe/udp.h b/src/include/gpxe/udp.h index bb69995ac..8c731c13a 100644 --- a/src/include/gpxe/udp.h +++ b/src/include/gpxe/udp.h @@ -101,6 +101,7 @@ extern int udp_open ( struct udp_connection *conn, uint16_t local_port ); extern void udp_connect ( struct udp_connection *conn, struct sockaddr *peer ); extern void udp_close ( struct udp_connection *conn ); +extern int udp_senddata ( struct udp_connection *conn ); extern int udp_send ( struct udp_connection *conn, const void *data, size_t len ); extern int udp_sendto ( struct udp_connection *conn, struct sockaddr *peer, const void *data, size_t len ); |
