aboutsummaryrefslogtreecommitdiff
path: root/src/include/ipxe/rndis.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2014-12-20 21:20:52 +0000
committerMichael Brown <mcb30@ipxe.org>2014-12-20 21:33:59 +0000
commitf6a3bc0aa1f9cd81b3999efab15a648089872040 (patch)
treeb794513d5a9b487e7ff0d501d3f9a2bbdeb90a83 /src/include/ipxe/rndis.h
parent639632b0595a30e2a23c7009bf2ccf1d371158bc (diff)
downloadipxe-f6a3bc0aa1f9cd81b3999efab15a648089872040.zip
ipxe-f6a3bc0aa1f9cd81b3999efab15a648089872040.tar.gz
ipxe-f6a3bc0aa1f9cd81b3999efab15a648089872040.tar.bz2
[rndis] Ignore start-of-day RNDIS_INDICATE_STATUS_MSG with status 0x40020006
Windows Server 2012 R2 generates an RNDIS_INDICATE_STATUS_MSG with a status code of 0x4002006. This status code does not appear to be documented anywhere within the sphere of human knowledge. Explicitly ignore this status code in order to avoid unnecessarily cluttering the display when RNDIS debugging is enabled. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/rndis.h')
-rw-r--r--src/include/ipxe/rndis.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/ipxe/rndis.h b/src/include/ipxe/rndis.h
index bd6793e..b7c9c06 100644
--- a/src/include/ipxe/rndis.h
+++ b/src/include/ipxe/rndis.h
@@ -191,6 +191,8 @@ enum rndis_status {
RNDIS_STATUS_MEDIA_CONNECT = 0x4001000bUL,
/** Device is disconnected from the medium */
RNDIS_STATUS_MEDIA_DISCONNECT = 0x4001000cUL,
+ /** Unknown start-of-day status code */
+ RNDIS_STATUS_WTF_WORLD = 0x40020006UL,
};
/** RNDIS keepalive message */