summaryrefslogtreecommitdiff
path: root/sys/lib/libnetboot/bootinfo.c
blob: 76654eb032d970e3151018c6c3c2a2dbd93dda74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <sys/param.h>
#include <sys/types.h>
#include <sys/cdefs.h>

#include <netinet/in.h>
#include <netinet/in_systm.h>

#include "netboot.h"
#include "bootbootp.h"
#include "bootp.h"
#include "netif.h"

void get_bootinfo(desc)
     struct iodesc *desc;
{
    bootp(desc);
}