source: rtems/c/src/lib/libnetworking/rtems/rtems_bootp.c @ 96b39164

4.104.114.84.95
Last change on this file since 96b39164 was 96b39164, checked in by Joel Sherrill <joel.sherrill@…>, on 08/20/98 at 21:56:40

Added CVS Ids

  • Property mode set to 100644
File size: 277 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <rtems.h>
6#include <rtems/error.h>
7#include <sys/types.h>
8#include <rtems/rtems_bsdnet.h>
9
10/*
11 * Perform a BOOTP request
12 */
13void
14rtems_bsdnet_do_bootp (void)
15{
16        rtems_bsdnet_semaphore_obtain ();
17        bootpc_init ();
18        rtems_bsdnet_semaphore_release ();
19}
Note: See TracBrowser for help on using the repository browser.