loader: pxe.h constants have wrong values

FLTR_PRMSCS should be 0x4 and FLTR_SRC_RTG should be 0x8

PXE Specification 2.1 PXENV_UNDI_OPEN, page 59.

http://download.intel.com/design/archives/wfm/downloads/pxespec.pdf

Reviewed by:	allanjude
Approved by:	allanjude (mentor)
Differential Revision:	https://reviews.freebsd.org/D10056
This commit is contained in:
Toomas Soome 2017-03-20 18:15:36 +00:00
parent 1c36b15ace
commit 11e46b7133
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315646

View File

@ -175,8 +175,8 @@ typedef struct {
uint16_t PktFilter;
# define FLTR_DIRECTED 0x0001
# define FLTR_BRDCST 0x0002
# define FLTR_PRMSCS 0x0003
# define FLTR_SRC_RTG 0x0004
# define FLTR_PRMSCS 0x0004
# define FLTR_SRC_RTG 0x0008
t_PXENV_UNDI_MCAST_ADDRESS R_Mcast_Buf;
} PACKED t_PXENV_UNDI_OPEN;