Home
last modified time | relevance | path

Searched refs:seq_auth (Results 1 – 3 of 3) sorted by relevance

/btstack/src/mesh/
H A Dmesh_lower_transport.c317 uint32_t seq_auth = (seq & 0xffe000) | seq_zero; in mesh_lower_transport_incoming_pdu_for_segmented_message() local
318 if (seq_auth > seq){ in mesh_lower_transport_incoming_pdu_for_segmented_message()
319 seq_auth -= 0x2000; in mesh_lower_transport_incoming_pdu_for_segmented_message()
323 if (seq_auth > peer->seq_auth || (seq_auth == peer->seq_auth && peer->block_ack == 0)){ in mesh_lower_transport_incoming_pdu_for_segmented_message()
333 pdu->seq = seq_auth; in mesh_lower_transport_incoming_pdu_for_segmented_message()
349 peer->seq_auth = seq_auth; in mesh_lower_transport_incoming_pdu_for_segmented_message()
H A Dmesh_peer.h59 uint32_t seq_auth; member
/btstack/test/mesh/
H A Ddump_mesh_pklg.py291 self.seq_auth = self.seq
312 self.seq_auth = segment.seq & 0xffffe000 | segment.seq_zero
313 self.add_property('seq_auth', self.seq_auth)
363 self.seq_auth = lower_pdu.seq_auth
370 self.add_property('seq_auth', self.seq_auth)
441 …return bytes( [nonce_type, aszmic, pdu.seq_auth >> 16, (pdu.seq_auth >> 8) & 0xff, pdu.seq_auth & …