Skip to content

Commit fb65ae4

Browse files
author
Ossama Othman
authored
mptcpd 0.2a: Alpha release
This Multipath TCP Daemon alpha release replaces support for the deprecated MPTCP generic netlink API with the one found in the multipath-tcp.org 0.95+ kernel (see multipath-tcp/mptcp@4ea5dee), and has been verified to work with that kernel. Several actual and potential memory access violations were fixed in the mptcpd network monitor, path manager, and "sspi" plugin. The mptcp.service systemd service file now correctly grants the necessary privilege (CAP_NET_ADMIN) for proper operation of the mptcpd program.
1 parent be7220d commit fb65ae4

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MOSTLYCLEANFILES = $(DX_CLEANFILES)
1616
EXTRA_DIST = README.md Doxyfile mptcpd.dox LICENSES
1717

1818
README: $(top_srcdir)/README.md
19-
@test -z "$(PANDOC)" || $(PANDOC) --from markdown_github --to plain --output=$@ $<
19+
@test -z "$(PANDOC)" || $(PANDOC) --from gfm --to plain --output=$@ $<
2020

2121
dist-hook: README
2222

NEWS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
11 June 2019 - mptcpd 0.2a
2+
3+
- This Multipath TCP Daemon alpha release replaces support for the
4+
deprecated MPTCP generic netlink API with the one found in the
5+
multipath-tcp.org kernel (0.95+), and has been verified to work with
6+
that kernel.
7+
8+
- Several actual and potential memory access violations were fixed in
9+
the mptcpd network monitor, path manager, and "sspi" plugin.
10+
11+
- The mptcp.service systemd service file now correctly grants the
12+
necessary privilege (CAP_NET_ADMIN) for proper operation of the
13+
mptcpd program.
14+
115
27 March 2019 - mptcpd 0.1a
216

317
- This is the initial (alpha) release of the Multipath TCP Daemon

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ versions) without installation.
195195

196196
### Executing an Installed `mptcpd`
197197
#### Without `systemd`
198-
For now, `mptcpd` does not provide a traditional System V "init
198+
`mptcpd` currently does not provide traditional System V "init
199199
scripts". In general the `mptcpd` program may be run directly from
200200
the installed directory, e.g.:
201201

@@ -243,7 +243,7 @@ systemctl daemon-reload
243243
systemctl start mptcp.service
244244
```
245245

246-
These steps are not be necessary if the system is rebooted after
246+
These steps are not necessary if the system is rebooted after
247247
installation of `mptcpd`.
248248

249249
### Execution of `mptcpd` in the Source Distribution

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
AC_PREREQ([2.69])
88
AC_INIT([mptcpd],
9-
[0.1a],
9+
[0.2a],
1010
1111
[],
1212
[https://01.org/multipath-tcp-linux])

0 commit comments

Comments
 (0)