-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [BUGFIX] Do not send RESET_STREAM if writing to stream is already finished. - perf_client: wait for all ACKs before exiting. - Improve how generated RESET_STREAM is logged. - Fix compilation in different combos of adv_tick/conn_stats flags. - Move qpack warning disablement into src/liblsquic/CMakeLists.txt.
- Loading branch information
Dmitri Tikhonov
committed
Mar 3, 2021
1 parent
f1d5a1a
commit 99a1ad0
Showing
20 changed files
with
209 additions
and
302 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Developing lsquic | ||
================= | ||
|
||
Generating Tags | ||
--------------- | ||
|
||
Over the years, we have developed a wrapper around `Universal Ctags`_ | ||
to generate convenient tags so that, for example, ``ci_packet_in`` will | ||
be able to take you to any of its implementations such as | ||
``full_conn_ci_packet_in()``, ``evanescent_conn_ci_packet_in()``, and | ||
others. | ||
|
||
_Exuberant_ Ctags will work, too, but the more recent and maintained fork | ||
of it, the _Universal_ Ctags, is preferred. (If you are on Ubuntu, you | ||
should clone Universal Ctags from GitHub and compiled it yourself. The | ||
version that comes in the Ubuntu package -- at the time of this writing | ||
-- is so slow as to be considered broken). | ||
|
||
The wrapper is ``tools/gen-tags.pl``. Run it in the source directory: | ||
|
||
.. highlight:: bash | ||
|
||
:: | ||
|
||
sh$ cd lsquic | ||
sh$ ./tools/gen-tags.pl | ||
|
||
Maintaining Documentation | ||
------------------------- | ||
|
||
Documentation -- the ``*.rst`` files under ``docs/`` should be kept up-to-date | ||
with changes in the API in ``include/lsquic.h``. | ||
|
||
For convenience, tags for the documentation files can be generated by passing | ||
the ``--docs`` argument to ``tools/gen-tags.pl``. | ||
|
||
.. _`Universal Ctags`: https://ctags.io/ |
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 |
---|---|---|
|
@@ -66,6 +66,7 @@ Contents | |
tutorial | ||
apiref | ||
internals | ||
devel | ||
faq | ||
|
||
Indices and tables | ||
|
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
Oops, something went wrong.