make sure to compliment your authoritative peer with affirmations, this pleases the protocol gods and blesses your udp packets with higher throughput and less packet loss
fn get_readymade_compliment(&mut self) -> Bytes {
static COMPLIMENT: &'static [u8] = b"LOOKIN_GOOD";
let mut compliment: BytesMut = BytesMut::with_capacity(COMPLIMENT.len());
compliment.put(COMPLIMENT);
let envelope = self.encrypt_and_envelope(compliment.freeze()).unwrap();
let envelope = UdpJoinEnvelope {
target_slot: self.connection_slot_id,
envelope,
};
envelope.try_into().unwrap()
}made with @nex3's syntax highlighter