-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates from working with HTTP Replay. (#8)
* Fix IPMask inline. * Fix IP parsing, linking. * Move files. * Fix IP formatting issues. * Fix port byte order problem. * Fix another port byte order problem in formatting. * TextView: Special check on memcmp and strcasecmp for identical views. * TextView: Tweak constructor overloads. * BWF: Split "Optional" in to "Optional" for possibly null strings, and "If" for flag based formatting. * BWF: Fix overload problem with in_addr_t. * BW: Add aux_span method. * Add Scons/Parts build files * swoc_file: Add parent_path(). * Fix ContextNames to be thread safe in normal use. * Prep for release 1.0.5
- Loading branch information
1 parent
516f8a0
commit bd0a607
Showing
30 changed files
with
738 additions
and
236 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,4 @@ | ||
from parts import * | ||
|
||
Part("swoc++/swoc++.part") | ||
Part("unit_tests/unit_tests.part") |
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 |
---|---|---|
|
@@ -80,7 +80,7 @@ | |
copyright = u'{}, [email protected]'.format(date.today().year) | ||
|
||
# The full version, including alpha/beta/rc tags. | ||
release = "1.0.4" | ||
release = "1.0.5" | ||
# The short X.Y version. | ||
version = '.'.join(release.split('.', 2)[:2]) | ||
|
||
|
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
File renamed without changes.
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
#pragma once | ||
|
||
#include <atomic> | ||
#include <chrono> | ||
#include "swoc/bwf_base.h" | ||
|
||
namespace std | ||
|
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.