-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [openthread](https://github.com/openthread/openthread) from `8bafcd3` to `519537d`. - [Commits](openthread/openthread@8bafcd3...519537d) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
5398424
commit b5bef4c
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule openthread
updated
20 files
+1 −1 | include/openthread/instance.h | |
+10 −5 | include/openthread/tcp.h | |
+3 −2 | src/cli/README_TCP.md | |
+94 −39 | src/cli/cli_tcp.cpp | |
+3 −1 | src/cli/cli_tcp.hpp | |
+54 −14 | src/core/net/tcp6.cpp | |
+112 −0 | tests/scripts/expect/cli-tcp-tfo-tls.exp | |
+103 −0 | tests/scripts/expect/cli-tcp-tfo.exp | |
+0 −0 | tests/scripts/expect/cli-tcp-tls.exp | |
+1 −0 | third_party/tcplp/CMakeLists.txt | |
+5 −0 | third_party/tcplp/bsdtcp/tcp.h | |
+9 −1 | third_party/tcplp/bsdtcp/tcp_const.h | |
+1,295 −0 | third_party/tcplp/bsdtcp/tcp_fastopen.c | |
+111 −0 | third_party/tcplp/bsdtcp/tcp_fastopen.h | |
+183 −10 | third_party/tcplp/bsdtcp/tcp_input.c | |
+112 −3 | third_party/tcplp/bsdtcp/tcp_output.c | |
+11 −1 | third_party/tcplp/bsdtcp/tcp_subr.c | |
+28 −9 | third_party/tcplp/bsdtcp/tcp_usrreq.c | |
+22 −2 | third_party/tcplp/bsdtcp/tcp_var.h | |
+6 −5 | third_party/tcplp/tcplp.h |