dtls_check_retransmit method

void dtls_check_retransmit(
  1. Pointer<dtls_context_t> context,
  2. Pointer<clock_time_t> next
)

Checks sendqueue of given DTLS context object for any outstanding packets to be transmitted.

@param context The DTLS context object to use. @param next If not NULL, @p next is filled with the timestamp of the next scheduled retransmission, or @c 0 when no packets are waiting.

Implementation

void dtls_check_retransmit(
  ffi.Pointer<dtls_context_t> context,
  ffi.Pointer<clock_time_t> next,
) {
  return _dtls_check_retransmit(
    context,
    next,
  );
}