From 587e310edf6be2ca95ef44270f847fbd271069f1 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Thu, 30 Jun 2005 04:03:56 +0000 Subject: The DHCP header. --- cpukit/libnetworking/rtems/dhcp.h | 47 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 cpukit/libnetworking/rtems/dhcp.h (limited to 'cpukit') diff --git a/cpukit/libnetworking/rtems/dhcp.h b/cpukit/libnetworking/rtems/dhcp.h new file mode 100644 index 0000000000..f8cde76a41 --- /dev/null +++ b/cpukit/libnetworking/rtems/dhcp.h @@ -0,0 +1,47 @@ +/* + ------------------------------------------------------------------------ + $Id$ + ------------------------------------------------------------------------ + + Copyright Cybertec Pty Ltd, 2005 + All rights reserved Cybertec Pty Ltd, 2005 + + This software with is provided ``as is'' and with NO WARRANTY. + + ------------------------------------------------------------------------ + */ + +/** + @file + + DHCP Server interface. +*/ + +#if !defined (__RTEMS_DHCP_H__) +#define __RTEMS_DHCP_H__ + +#if __cplusplus +extern "C" +{ +#endif + +/* + * Perform DHCP. + */ +void rtems_bsdnet_do_dhcp (void); + +/* + * Maintain a DHCP offer that has already been accepted. + */ +void rtems_bsdnet_do_dhcp_refresh_only (unsigned long xid, + unsigned long lease_time, + unsigned long elapsed_time, + unsigned long ip_address, + unsigned long srv_address, + const char *hostname); + +#if __cplusplus +} +#endif + +#endif -- cgit v1.2.3