summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-09[Data Analysis] First data analysis resultsWill Hawkins
The first set of raw data and a tool for munging it into csv files. The data look promising but there are a few things that we need to address.
2022-05-05[Bugfix] Null pointer dereference when debugging disabledWill Hawkins
When there is no debugging enabled, there was a null pointer dereference as a result of invoking `saturate` with a null pointer to a `debug.Debugging` structure.
2022-05-05Upgraded RPM Calculation Support (Take 1)Will Hawkins
This patch begins the work on updated RPM calculations using the httptrace infrastructure. Because we are still not able to break out the TLS handshake time due to upstream bugs, there are some workarounds in place. However, the numbers appear much more sane.
2022-05-04Make Traceable Interface and Refactor DebuggingWill Hawkins
1. Make a traceable interface for all things that can be wrapped in an httptrace.ClientTrace. 2. Refactor debugging system into debug package.
2022-05-04Fully support self-signed certificates (and add debug levels)Will Hawkins
Two unrelated changes: 1. Add full support for self-signed HTTPS certificates on the server 2. Add support for multiple log levels: So far we only use one, but adding support for additional levels will help us tier the levels to filter out excessive messages.
2022-04-01Feature: Add support for self-signed certs from the test configuration server.Will Hawkins
2022-03-26Feature: More Precise RTT/RPM calculationWill Hawkins
See Issue #10. Begin implementing the plumbing required to perform more precise RTT/RPM measurements.
2022-03-19Rename: Change bearing to generatingWill Hawkins
The newest version of the specification replaces the term bearing with the term generating. This patch brings the updated language to the code to make it easier to track the implementation's conformance to the spec.
2022-03-19Bugfix: (#8) Segfault when running w/o SSL debuggingWill Hawkins
When running without SSL key logging enabled, the client will segfault. This patch corrects that (obvious) error.
2022-03-18Document why `http2.Transport{}` is required.Will Hawkins
2022-03-18Make sure that we format with short lines.Will Hawkins
2022-03-18Rework RPM calculation to (hopefully) better match section 4.2.1.Will Hawkins
2022-03-18Forgot to change module location upon changing between repository owners.Will Hawkins
2022-03-18Format long times.Will Hawkins
2022-03-18Move from hawkinsw repository ownership to Apple repository ownership.Will Hawkins
2022-03-17Merge pull request #7 from richb-hanover/mainWill Hawkins
Add Dockerfile, minor tweaks to format of displayed stats
2022-03-17Add Dockerfile;Rich Brown
Pretty-print output (add banner, only display three sig-figs, etc)
2022-03-16Format: Add a line-length formatting.Will Hawkins
2022-03-16Refactor: Move magic numbers in to a constants module.Will Hawkins
2022-03-16Bugfix: Update README.md to include instructions for modules.Will Hawkins
2022-03-16Bugfix: Commit go.sum for easier buildingWill Hawkins
Resolves Issue #6.
2022-03-16Bugfix: Stop doing load-inducing downloads before RPM calculationWill Hawkins
This fix might be controversial and we will have to confirm it with the protocol designers: We will stop the actual download of the "large" file when we are about to start doing the RPM calculation.
2022-03-16Refactor: Cleanup the RTT calculation functionality.Will Hawkins
2022-03-15Update README.mdWill Hawkins
1. Add information about how to test against the Apple infrastructure 2. Add updated `-help` output (after -ssl-key-file support was added)
2022-03-15Major update: SSL Key Logging, HTTP2 supportWill Hawkins
This is a "How was this ever working?" update. 1. As it turns out, when you customize a Transport for an http.Client, the transport is 'naturally' an HTTP1 transport. To make it connect via HTTP2, you must use an http2.Transport from the golang.org/x/net/http2 package. 2. Add support for logging TLS per-session keys in order to aid debugging.
2022-03-15Add utility function for seeking to the end of a file.Will Hawkins
2022-03-15Add a helper for doing concurrent writes to files.Will Hawkins
2022-03-14Fix typos reported by @richb-hanoverWill Hawkins
2022-03-14Add a license.Will Hawkins
2022-03-14Add README.md and Update go.mod.Will Hawkins
2021-12-28Bugfix: Create new transports for each HTTP connectionWill Hawkins
By default go's network stack "helpfully" reuses the Transports among http.Clients. This will artifically inhibit the full use of the network. Creating new Transports for every http.Client will keep this from happening.
2021-12-18Performance (Try 3): Experiment with preallocating buffers.Will Hawkins
2021-12-18Performance (Take 2): A different attempt at improving perfWill Hawkins
Try intercepting a reader.
2021-12-17Bugfix: Old way of reading downloaded data was slowWill Hawkins
The previous method for reading the download was slow -- it involved too many "context switches" out of library code where the reading was actually happening. This method appears to be better. We'll see.
2021-12-17Feature: Add support for profiling the client.Will Hawkins
2021-12-16Bugfix: Calculation of RPM was off by a factor of 5Will Hawkins
The factor of five being included to account for the fact that a single test accumulated five RTTs was being applied twice. This patch fixes that.
2021-12-16Bugfix: Make sure that debugging output is properly omittedWill Hawkins
In the case where the user omitted the -debug flag the client would still output debugging information regardless. This commit fixes that.
2021-12-16Retype cooldownPeriod Global VariableWill Hawkins
cooldownPeriod should really be a time.Duration. Make it so.
2021-12-16Improve robustnessWill Hawkins
Improve robustness of the client in the case(s) where a network goes away in the middle of the test. Report errors properly in these cases and gracefully end the test.
2021-12-16Bugfix: Incorrect AllSequentialIncreasesLessThan (nee IncreasesLessThan) ↵Will Hawkins
Calculation In AllSequentialIncreasesLessThan (nee IncreasesLessThan), an earlier version of this function did not properly take into account the order in which values were added to the moving average when calculating the percent change. This patch fixes that error and adds an additional criteria for the function to return `true`: there must be *at least* `intervals` collected samples.
2021-12-15More general work.Will Hawkins
2021-12-15Rename MeasurableConnection interface to LoadBearingConnection.Will Hawkins
2021-12-15Refactoring and error handling.Will Hawkins
2021-12-15Basic implementation complete.Will Hawkins
2021-12-14Add sanity checking for configuration.Will Hawkins
2021-12-14Refactoring -- more.Will Hawkins
2021-12-13Intermediate check-in commit. Adding functionality and refactoring.Will Hawkins
2021-12-10More work.Will Hawkins
2021-12-10Initial commit.Will Hawkins