-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the Multipath TCP Daemon beta release. It includes the following notable changes: - All known memory leaks have been fixed. - A potential security hole related to logging of MPTCP connection tokens was closed. Logging of MPTCP connection tokens no longer occurs. - Support for compiler-based address, leak, and undefined behavior sanitizers is now available, and may be enabled through corresponding `configure' script options. Run `./configure --help' for the full list of options. - Diagnostic messages will be issued if the Linux kernel is not properly configured to support a user space MPTCP path manager like mptcpd. - Documentation on how to contribute to mptcpd is available in the `CONTRIBUTING.md' file. - A pkg-config `mptcpd.pc' file is now generated and installed to allow plugin developers to more easily obtain the necessary mptcpd build related information, such as compiler and linker command line flags. - The mptcpd plugin API dropped the mptcpd_addr type in favor of the standard sockaddr family of structures. - Debugger-friendly optimization is now supported. - ELL 0.27 or better is now required due to changes in the ELL generic netlink API.
- Loading branch information
Ossama Othman
authored
Dec 17, 2019
1 parent
ac31ede
commit 5edfce9
Showing
5 changed files
with
41 additions
and
9 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([mptcpd], | ||
[0.2a], | ||
[0.3], | ||
[[email protected]], | ||
[], | ||
[https://01.org/multipath-tcp-linux]) | ||
|
@@ -31,7 +31,7 @@ dnl Support "--enable-debug=..." configure script command line option. | |
AX_IS_RELEASE([git-directory]) | ||
AX_CHECK_ENABLE_DEBUG([yes]) | ||
|
||
AM_INIT_AUTOMAKE([1.15 -Wall -Werror -Wno-portability silent-rules std-options check-news readme-alpha]) | ||
AM_INIT_AUTOMAKE([1.15 -Wall -Werror -Wno-portability silent-rules std-options check-news]) | ||
AM_SILENT_RULES([yes]) | ||
LT_INIT([disable-static]) | ||
|
||
|
@@ -171,7 +171,7 @@ AM_CONDITIONAL([BUILDING_DLL], [test "x$enable_shared" = xyes]) | |
# --------------------------------------------------------------- | ||
# Checks for libraries. | ||
# --------------------------------------------------------------- | ||
PKG_CHECK_MODULES([ELL], [ell >= 0.21]) | ||
PKG_CHECK_MODULES([ELL], [ell >= 0.27]) | ||
|
||
# --------------------------------------------------------------- | ||
# Checks for header files. | ||
|
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