-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update wscript with CMakeLists.txt * Update model example and bursty-app * Update README with new ns3 commands * Make example compliant only with 802.11ac
- Loading branch information
1 parent
d12079f
commit 8bd43fe
Showing
7 changed files
with
89 additions
and
72 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
build_lib( | ||
LIBNAME vr-app | ||
SOURCE_FILES model/burst-generator.cc | ||
model/burst-sink.cc | ||
model/bursty-application.cc | ||
model/my-random-variable-stream.cc | ||
model/seq-ts-size-frag-header.cc | ||
model/simple-burst-generator.cc | ||
model/trace-file-burst-generator.cc | ||
model/vr-burst-generator.cc | ||
helper/bursty-helper.cc | ||
helper/burst-sink-helper.cc | ||
HEADER_FILES model/burst-generator.h | ||
model/burst-sink.h | ||
model/bursty-application.h | ||
model/my-random-variable-stream.h | ||
model/seq-ts-size-frag-header.h | ||
model/simple-burst-generator.h | ||
model/trace-file-burst-generator.h | ||
model/vr-burst-generator.h | ||
helper/bursty-helper.h | ||
helper/burst-sink-helper.h | ||
LIBRARIES_TO_LINK ${libcore} | ||
${libapplications} | ||
${libpoint-to-point} | ||
${libinternet} | ||
) |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
build_lib_example( | ||
NAME sample-mixture-random-variable | ||
SOURCE_FILES sample-mixture-random-variable.cc | ||
LIBRARIES_TO_LINK ${libvr-app} | ||
${libapplications} | ||
) | ||
|
||
build_lib_example( | ||
NAME bursty-application-example | ||
SOURCE_FILES bursty-application-example.cc | ||
LIBRARIES_TO_LINK ${libvr-app} | ||
${libapplications} | ||
${libpoint-to-point} | ||
${libinternet} | ||
${libnetwork} | ||
) | ||
|
||
build_lib_example( | ||
NAME vr-application-example | ||
SOURCE_FILES vr-application-example.cc | ||
LIBRARIES_TO_LINK ${libvr-app} | ||
${libapplications} | ||
${libpoint-to-point} | ||
${libinternet} | ||
${libnetwork} | ||
) | ||
|
||
build_lib_example( | ||
NAME trace-file-burst-application-example | ||
SOURCE_FILES trace-file-burst-application-example.cc | ||
LIBRARIES_TO_LINK ${libvr-app} | ||
${libapplications} | ||
${libpoint-to-point} | ||
${libinternet} | ||
${libnetwork} | ||
) | ||
|
||
build_lib_example( | ||
NAME vr-app-n-stas | ||
SOURCE_FILES vr-app-n-stas.cc | ||
LIBRARIES_TO_LINK ${libvr-app} | ||
${libapplications} | ||
${libcore} | ||
${libwifi} | ||
) |
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 was deleted.
Oops, something went wrong.
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