jonas-schievink/rubble

Only reply to LL_VERSION_IND once

Open

#49 创建于 2019年4月23日

在 GitHub 查看
 (0 评论) (1 反应) (0 负责人)Rust (403 star) (58 fork)user submission
area: link layergood first issuestatus: needs codetype: bug

描述

Either master or slave may send the LL_VERSION_IND LL Control PDU, and both will respond to it. According to the spec, you're supposed to keep track of whether you've already sent this and ignore the PDU in that case. We currently rely on the master to implement this correctly, since we'd otherwise end up in an endless loop.

To fix this, we need to add another bool to the real-time LinkLayer state to track whether we've sent this already. Eventually we should collapse all the bool flags into a single byte storing them as bitflags.

贡献者指南