mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Added define _USE_NE2000 with increased tracing level instead of #if 0 block to bind stack to NIC.
svn path=/trunk/; revision=3630
This commit is contained in:
parent
273ae68ba9
commit
97575f89c9
1 changed files with 8 additions and 1 deletions
|
@ -16,12 +16,19 @@
|
||||||
#include <udp.h>
|
#include <udp.h>
|
||||||
#include <tcp.h>
|
#include <tcp.h>
|
||||||
|
|
||||||
|
//#define _USE_NE2000
|
||||||
|
|
||||||
#ifdef DBG
|
#ifdef DBG
|
||||||
|
|
||||||
/* See debug.h for debug/trace constants */
|
/* See debug.h for debug/trace constants */
|
||||||
|
#ifdef _USE_NE2000
|
||||||
|
DWORD DebugTraceLevel = MID_TRACE;
|
||||||
|
//DWORD DebugTraceLevel = (MAX_TRACE + DEBUG_DATALINK);
|
||||||
|
#else
|
||||||
DWORD DebugTraceLevel = MIN_TRACE;
|
DWORD DebugTraceLevel = MIN_TRACE;
|
||||||
//DWORD DebugTraceLevel = MAX_TRACE;
|
//DWORD DebugTraceLevel = MAX_TRACE;
|
||||||
//DWORD DebugTraceLevel = DEBUG_ULTRA;
|
//DWORD DebugTraceLevel = DEBUG_ULTRA;
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* DBG */
|
#endif /* DBG */
|
||||||
|
|
||||||
|
@ -818,7 +825,7 @@ DriverEntry(
|
||||||
/* FIXME: Get binding information from registry */
|
/* FIXME: Get binding information from registry */
|
||||||
|
|
||||||
/* Put your own NDIS adapter device name here */
|
/* Put your own NDIS adapter device name here */
|
||||||
#if 0
|
#ifdef _USE_NE2000
|
||||||
/* ReactOS */
|
/* ReactOS */
|
||||||
NdisInitUnicodeString(&DeviceName, L"\\Device\\ne2000");
|
NdisInitUnicodeString(&DeviceName, L"\\Device\\ne2000");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue