forked from appneta/tcpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
work on removing libnet requirement, refs appneta#29
- Loading branch information
1 parent
7357845
commit 5b089b5
Showing
24 changed files
with
141 additions
and
98 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
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
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 |
---|---|---|
|
@@ -28,6 +28,7 @@ config-header = "config.h"; | |
include = "#include \"defines.h\"\n" | ||
"#include \"flowreplay.h\"\n" | ||
"#include \"common.h\"\n" | ||
"#include \"config.h\"\n" | ||
"extern char pcap_version[];\n" | ||
"extern flowreplay_opt_t options;\n"; | ||
|
||
|
@@ -262,7 +263,11 @@ flag = { | |
#endif | ||
fprintf(stderr, "\n"); | ||
fprintf(stderr, "Copyright 2001-2006 by Aaron Turner <[email protected]>\n"); | ||
#ifdef HAVE_LIBNET | ||
fprintf(stderr, "Compiled against libnet: %s\n", LIBNET_VERSION); | ||
#else | ||
fprintf(stderr, "Not compiled with libnet.\n"); | ||
#endif | ||
fprintf(stderr, "Compiled against libpcap: %s\n", pcap_version); | ||
#ifdef ENABLE_64BITS | ||
fprintf(stderr, "64 bit packet counters: enabled\n"); | ||
|
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
Oops, something went wrong.