Initialise delivery-count to 0

This commit is contained in:
David Ansari 2025-08-04 13:02:03 +02:00
parent af65fb9960
commit e2af52f643
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@
-define(INITIAL_OUTGOING_TRANSFER_ID, 0).
%% "Note that, despite its name, the delivery-count is not a count but a
%% sequence number initialized at an arbitrary point by the sender." [2.6.7]
-define(INITIAL_DELIVERY_COUNT, ?UINT_MAX - 4).
-define(INITIAL_DELIVERY_COUNT, 0).
-define(INITIAL_OUTGOING_DELIVERY_ID, 0).
-define(UINT(N), {uint, N}).
%% [3.4]