1
2
3
4
5
6
7
8
9
//! Optional Relay Feature
use crate::mesh::{IVIndex, NetKeyIndex};
use crate::net;

pub struct RelayPDU {
    pub pdu: net::PDU,
    pub iv_index: IVIndex,
    pub net_key_index: NetKeyIndex,
}