Branch: refs/heads/rust-bindings
Home: https://github.com/kronosnet/kronosnet
Commit: 63cf38ed71d690ca0676264456dc79c49d560baa
https://github.com/kronosnet/kronosnet/commit/63cf38ed71d690ca0676264456dc7…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2021-06-11 (Fri, 11 Jun 2021)
Changed paths:
M libknet/bindings/rust/Makefile.am
M libnozzle/bindings/rust/Makefile.am
Log Message:
-----------
[build] Make sure we regenerate the sys/*.rs files if the headers change
Branch: refs/heads/rust-bindings
Home: https://github.com/kronosnet/kronosnet
Commit: 70c2e3691c88aec30798f7dffbd586663dfabb1b
https://github.com/kronosnet/kronosnet/commit/70c2e3691c88aec30798f7dffbd58…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2021-06-11 (Fri, 11 Jun 2021)
Changed paths:
M libknet/bindings/rust/src/libknet.rs
M libknet/bindings/rust/tests/Cargo.toml
M libknet/bindings/rust/tests/build.rs
M libknet/bindings/rust/tests/src/bin/knet-test.rs
M libknet/tests/test-common.c
M libknet/tests/test-common.h
M libnozzle/bindings/rust/tests/Makefile.am
M libnozzle/bindings/rust/tests/src/bin/nozzle-test.rs
R libnozzle/bindings/rust/tests/up.d/tap33
Log Message:
-----------
[tests] fix Rust tests to run in-place better/properly
nozzle-test now uses the nozzle_open() provided tap name
and creates the up.d/tapname file on-the-fly.
knet-test now uses the build-tree crypto/compress plugins
rather than the installed ones
Branch: refs/heads/rust-bindings
Home: https://github.com/kronosnet/kronosnet
Commit: a4ef4f9a06d51ac362454442f3417ebca3a190a4
https://github.com/kronosnet/kronosnet/commit/a4ef4f9a06d51ac362454442f3417…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2021-06-11 (Fri, 11 Jun 2021)
Changed paths:
M libknet/bindings/rust/src/libknet.rs
M libknet/bindings/rust/tests/Cargo.toml
M libknet/bindings/rust/tests/build.rs
M libknet/bindings/rust/tests/src/bin/knet-test.rs
M libknet/tests/test-common.c
M libknet/tests/test-common.h
M libnozzle/bindings/rust/tests/src/bin/nozzle-test.rs
R libnozzle/bindings/rust/tests/up.d/tap33
Log Message:
-----------
[tests] fix Rust tests to run in-place better/properly
nozzle-test now uses the nozzle_open() provided tap name
and creates the up.d/tapname file on-the-fly.
knet-test now uses the build-tree crypto/compress plugins
rather than the installed ones
Branch: refs/heads/minor-sock-fix
Home: https://github.com/kronosnet/kronosnet
Commit: b3a815a3fcd2a0e254c00f331ff73cea25196786
https://github.com/kronosnet/kronosnet/commit/b3a815a3fcd2a0e254c00f331ff73…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2021-06-11 (Fri, 11 Jun 2021)
Changed paths:
M libknet/threads_tx.c
Log Message:
-----------
[tx] minor optimizations to avoid recalculating socksize over and over
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/stable1-proposed-sock
Home: https://github.com/kronosnet/kronosnet
Commit: 7970a99cc0c4bd659658a731b57dc79d027f6cf1
https://github.com/kronosnet/kronosnet/commit/7970a99cc0c4bd659658a731b57dc…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2021-06-11 (Fri, 11 Jun 2021)
Changed paths:
M libknet/internals.h
M libknet/threads_heartbeat.c
M libknet/threads_pmtud.c
M libknet/threads_rx.c
M libknet/threads_tx.c
M libknet/transport_common.c
M libknet/transport_common.h
M libknet/transport_sctp.c
M libknet/transport_udp.c
Log Message:
-----------
send 'correct' sockaddr lengths to socket calls
FreeBSD-devel insists that the length passed into socket calls
matches the expected length of the sockaddr it describes.
So, eg, when passing a sockaddr_in, the length must be sizeof(sockaddr_in)
rather than sizeof(sockaddr_storage) which we were using
Signed-Off-By: Chrissie Caulfield <ccaulfie(a)redhat.com>