source: rtems/cpukit/libnetworking/rtems/dhcp.h @ da10694

4.115
Last change on this file since da10694 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2  ------------------------------------------------------------------------
3
4  Copyright Cybertec Pty Ltd, 2005
5  All rights reserved Cybertec Pty Ltd, 2005
6
7  This software with is provided ``as is'' and with NO WARRANTY.
8
9  ------------------------------------------------------------------------
10 */
11
12/**
13  @file
14
15  DHCP Server interface.
16*/
17
18#if !defined (__RTEMS_DHCP_H__)
19#define __RTEMS_DHCP_H__
20
21#if __cplusplus
22extern "C"
23{
24#endif
25
26/*
27 * Perform DHCP.
28 */
29void rtems_bsdnet_do_dhcp (void);
30int rtems_bsdnet_do_dhcp_timeout (void);
31void rtems_bsdnet_dhcp_down (void);
32
33/*
34 * Maintain a DHCP offer that has already been accepted.
35 */
36void rtems_bsdnet_do_dhcp_refresh_only (unsigned long xid,
37                                        unsigned long lease_time,
38                                        unsigned long elapsed_time,
39                                        unsigned long ip_address,
40                                        unsigned long srv_address,
41                                        const char    *hostname);
42
43#if __cplusplus
44}
45#endif
46
47#endif
Note: See TracBrowser for help on using the repository browser.