-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
发现一个错误: #1
Open
kouzhudong
wants to merge
317
commits into
master
Choose a base branch
from
merge_winpcap_oem
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
发现一个错误: #1
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(it seems that "copy" on NT4 has big problems expanding something like foo\\bar\\dep\\bin\\nt4\\*.*....).
Fixed a problem while initializing WinPcapOem: we need to change the value of g_StillToInit while holding the mutex protecting WoemEnterDll.
Fixed a problem while initializing WinPcapOem: we need to change the value of g_StillToInit while holding the mutex protecting WoemEnterDll.
… and security are done within WoemInitialize).
directory. Added some environment flags to generate PDB files in both the free and checked version of the driver.
Added version.h to the project.
- removed a useless string resource - added the inclusion of WinPcapOem.rc2 - added afxres.h, otherwise the version resources are not generated.
and the TNT bin folder.
…ource compiler happy.
… build for The Network Toolkit).
…etVersion will return "<unknown>", rather than an error message in the version string!).
…es some issues with some backup software (as reported by McAfee). Delete it when the driver gets unloaded.
unloading packet.dll. This would could an exception that was caught when running the app under a debugger.
…rvice to return an error string in case of failure.
…rvice to return an error string in case of failure.
…rvice to return an error string in case of failure.
License fees and non-disclosure agreements are no longer required.
In each applicable WinPcap OEM source code file (.h, .c, and .cpp) apply a BSD 3-clause license similar to the one used in the plain WinPcap sources. This is preparation for inclusion in the public WinPcap repository. To the best of my knowledge Riverbed Technology has sole ownership of each the changed files.
Move the contents of this (the winpcap_oem) repository into the winpcap_oem subdirectory. This is in preparation for merging with the winpcap repository.
Merge the 'master' branch of the winpcap_oem repository into this branch (merge_winpcap_oem). The winpcap_oem repository has been prepared for this merge by having all of its contents moved to a single directory (winpcap_oem).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
openclos.c的第592行:
NdisFreeSpinLock(&Open->CpuData[i].BufferLock);
因该为:
NdisFreeSpinLock(&pOpen->CpuData[i].BufferLock);
吧!