BACnet.Protocol.IncompleteAPDU (bacstack v0.0.1)

View Source

This module is used to represent a segmented incomplete APDU.

The given struct is to be fed to the BACnet.Stack.SegmentsStore, which will handle the segmentation.

Summary

Types

t()

Represents an incomplete APDU.

Functions

Set the window size field to the given number.

Types

t()

@type t() :: %BACnet.Protocol.IncompleteAPDU{
  data: term(),
  header: term(),
  invoke_id: term(),
  more_follows: term(),
  sequence_number: term(),
  server: term(),
  window_size: term()
}

Represents an incomplete APDU.

Functions

set_window_size(incomplete, window_size)

@spec set_window_size(t(), 1..127) :: t()

Set the window size field to the given number.