Skip to content

Commit

Permalink
Increase duplicate window detection to 15 seconds and make configurab…
Browse files Browse the repository at this point in the history
…le (#1431)

Signed-off-by: Chris Jackson <[email protected]>
  • Loading branch information
cdjackson authored Jul 8, 2024
1 parent cd4eef1 commit 9df7ffb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,15 @@ public ZigBeeKey getZigBeeNetworkKey() {
return transport.getZigBeeNetworkKey();
}

/**
* Gets the {@link ApdDataEntity} in use by the network manager. This allows configuration of the APSDE.
*
* @return the {@link ApdDataEntity} in use by the network manager.
*/
public ApsDataEntity getApsDataEntity() {
return apsDataEntity;
}

/**
* Set the current link key in use by the system.
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*
*/
public class ApsDataEntity {
private static final long DUPLICATE_TIME_WINDOW = 5000;
private static final long DUPLICATE_TIME_WINDOW = 15000;

private static final int FRAGMENTATION_LENGTH = 78;
private static final int FRAGMENTATION_WINDOW = 1;
Expand Down

0 comments on commit 9df7ffb

Please sign in to comment.