-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pcap thread, new options
-miT
and possible bugfix for -p
and …
…a small memory leak fix Three new runtime options for `dsc`: - `-m` sets monitor mode on interfaces - `-i` sets immediate mode on interfaces - `-T` disable the usage of threads in pcap thread Also put all flag `int`'s as external in configure hooks, the integer for promiscuous mode was not like that before which would mean that `-p` flag have never worked before. Device name was `strdup()`'ed in `Pcap_init()` but never freed later.
- Loading branch information
Showing
13 changed files
with
366 additions
and
141 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
*.la | ||
config.log | ||
config.status | ||
config.guess | ||
config.sub | ||
stamp-h1 | ||
.deps | ||
.libs | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "src/pcap_layers"] | ||
path = src/pcap_layers | ||
url = https://github.com/DNS-OARC/pcap_layers.git | ||
[submodule "src/pcap-thread"] | ||
path = src/pcap-thread | ||
url = https://github.com/DNS-OARC/pcap-thread.git |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh -e | ||
|
||
autoreconf --force --install --no-recursive | ||
autoreconf --force --install --no-recursive --include=src/pcap-thread/m4 |
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
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
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
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
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
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
Submodule pcap-thread
added at
2768c8
Oops, something went wrong.