-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make addition of CC algorithms modular #1856
Conversation
Review of PR #1853 show that we need one more effort to get a fully generic solution: some generic way to pass algorithm specific parameters from the UI/CLI/App to the CC code. Let's work on that before merging this PR. |
Just a note from my side: Because there is a header file for each CC now, we can also consider to define the functions of the CC there. Currently there is no way to do some unit tests with the CC algos. And it should not increase the file size of the executable too. But I think we could discuss and do that in a separate PR. |
@hfstco Thanks for the review. Yes, adding unit tests for CC algos would be a great idea, and documenting the functions to be tested in the header files would be very neat. I am also adding in this PR a generic way to pass an option string to the CC Algo. This is tested in one of the BBR/Wi-Fi tests. |
Next step after this is to update the |
We like to use picoquic to investigate congestion control and test multiple algorithms. However, we do not want to load the code of multiple algorithms in every executable program that uses picoquic. For example, some developers are looking at Arduino class devices, and want to make the code as small as possible.
The general approach is to use dynamic linking. If an object file does not include any function required by the program, it will not be linked into the executable. But to achieve that, the program shall not have any reference to the function, including no calls in a rarely used branch, and no addition to the function pointer in a list of "external" objects. We apply this logic to congestion control algorithms as follow:
picoquic.h
picoquicdemo
that want to surface all available options