Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e3d4e4d
F-7630 - Reject NULL gwAddr destination in MQTT-SN GWINFO decode
aidangarske Aug 7, 2026
f02cced
F-7661 - Retain inbound QoS 2 dedup state across broker session recon…
aidangarske Aug 7, 2026
545115d
F-7666 - Reject CONNECT Receive Maximum of 0 as a protocol error
aidangarske Aug 7, 2026
6c0fde1
F-7668 - Default v5 CONNECT Session Expiry to 0 regardless of Clean S…
aidangarske Aug 7, 2026
3baf6ae
F-7669 - Create orphan session for zero-subscription clients with non…
aidangarske Aug 7, 2026
28ab8dd
F-7670 - Sweep and expire orphan sessions past their Session Expiry d…
aidangarske Aug 7, 2026
ebabb34
F-7671 - Apply DISCONNECT Session Expiry Interval and reject illegal …
aidangarske Aug 7, 2026
4aac806
F-7672 - Honor SUBSCRIBE Retain Handling option before retained delivery
aidangarske Aug 7, 2026
77ccc3b
F-7673 - Preserve v5 PUBLISH properties through the outbound queue
aidangarske Aug 7, 2026
9a75f3f
F-7674 - Route retained and Will delivery through the tracked outboun…
aidangarske Aug 7, 2026
edb89a0
F-7675 - Reject Will-bearing CONNECT when Will support is not compile…
aidangarske Aug 7, 2026
8d839b2
F-7676 - Schedule pending Will publish at the earlier of delay or ses…
aidangarske Aug 7, 2026
80d6a5d
F-7677 - Preserve the full negotiated Will Delay Interval instead of …
aidangarske Aug 7, 2026
69af494
F-7681 - Close connection on malformed PUBACK or PUBCOMP decode
aidangarske Aug 7, 2026
598118e
F-7678 - Reject CONNECT carrying an unsupported Authentication Method
aidangarske Aug 7, 2026
81d106f
F-7664 - Scope duplicate Subscription Identifier exemption to PUBLISH…
aidangarske Aug 7, 2026
5cbdc85
F-7665 - Enforce a distinct allow-list for v5 Will Properties
aidangarske Aug 7, 2026
77c07de
F-7663 - Make decode-side UTF-8 well-formedness validation mandatory
aidangarske Aug 7, 2026
e378990
F-7656 - Validate PUBACK/PUBREC/PUBREL/PUBCOMP Reason Code before enc…
aidangarske Aug 7, 2026
9a3a347
F-7679 - Reject Authentication Data without Authentication Method in …
aidangarske Aug 7, 2026
12f9636
F-7667 - Reject CONNECT Maximum Packet Size of 0 as a protocol error
aidangarske Aug 7, 2026
4232b02
F-7657 - Enforce client-side Receive Maximum flow control quota
aidangarske Aug 7, 2026
05a9ceb
F-7662 - Disconnect client on malformed or protocol-invalid received …
aidangarske Aug 7, 2026
d8d864a
F-7680 - Enforce client-side Topic Alias Maximum on outbound PUBLISH
aidangarske Aug 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/broker.test
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,9 @@ if ! wait_for_file "${TMP_DIR}/t6b_watcher.ready" 5; then
FAIL=1
t6b_setup_ok=0
fi
./$sub_bin -T -h 127.0.0.1 -p $port -n "test/ka2_trigger" -i "ka2_client" -l -k 4 \
# -s (persistent session, Session Expiry != 0) so the v5 Will Delay is honored;
# an expiry-0 session ends at disconnect and publishes the Will immediately.
./$sub_bin -T -h 127.0.0.1 -p $port -n "test/ka2_trigger" -i "ka2_client" -l -s -k 4 \
-R "${TMP_DIR}/t6b_client.ready" >"${TMP_DIR}/t6b_client.log" 2>&1 &
T6B_CLIENT_PID=$!
TEST_PIDS+=($T6B_CLIENT_PID)
Expand Down
Loading
Loading