summaryrefslogtreecommitdiff
path: root/sys/lib/libnetboot/globals.c
blob: a2a9fb498780f74527815247fd317bbc69a73926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*	$NetBSD: globals.c,v 1.3 1994/10/26 06:43:10 cgd Exp $	*/

/*
 *	globals.c:
 *
 *	global variables should be separate, so nothing else
 *	must be included extraneously.
 */

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

#include "netboot.h"

u_char	bcea[6] = BA;			/* broadcast ethernet address */
char	rootpath[FNAME_SIZE];		/* root mount path */
char	swappath[FNAME_SIZE];		/* swap mount path */
char	ifname[IFNAME_SIZE];		/* name of interface (e.g. "le0") */
n_long	rootip;				/* root ip address */
n_long	swapip;				/* swap ip address */
n_long	gateip;				/* swap ip address */
n_long	smask;				/* subnet mask */
n_long	nmask;				/* net mask */
n_long	mask;				/* subnet or net mask */
time_t	bot;				/* beginning of time in seconds */