Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 4 节点网络中向特定节点发送 Janus 帧而不是广播消息,该怎么做?以及如何计算到该节点的传输时间?
JANUS 规范没有定义节点寻址,因此标准的 JANUS 框架无法支持to和from字段。您需要在 cargo ( data) 或appData字段中的应用程序级别输入此信息,并在接收端使用它。
to
from
data
appData
假设您正在使用txJanusFrameReq,您可以使用该to字段来指定目标节点地址,就像您使用txFrameReq. (例如TxFrameReq(to: host('B')))
txJanusFrameReq
txFrameReq
TxFrameReq(to: host('B'))