use super::*;
use bincode::Options;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ChallengeRequest<N: Network> {
pub version: u32,
pub listener_port: u16,
pub node_type: NodeType,
pub address: Address<N>,
pub nonce: u64,
}
impl<N: Network> MessageTrait for ChallengeRequest<N> {
#[inline]
fn name(&self) -> String {
"ChallengeRequest".to_string()
}
#[inline]
fn serialize<W: Write>(&self, writer: &mut W) -> Result<()> {
Ok(bincode::serialize_into(
writer,
&(self.version, self.listener_port, self.node_type, self.address, self.nonce),
)?)
}
#[inline]
fn deserialize(bytes: BytesMut) -> Result<Self> {
let options =
bincode::options().with_limit(MAXIMUM_MESSAGE_SIZE as u64).with_fixint_encoding().allow_trailing_bytes();
let (version, listener_port, node_type, address, nonce) = options.deserialize_from(&mut bytes.reader())?;
Ok(Self { version, listener_port, node_type, address, nonce })
}
}
impl<N: Network> ChallengeRequest<N> {
pub fn new(listener_port: u16, node_type: NodeType, address: Address<N>, nonce: u64) -> Self {
Self { version: Message::<N>::VERSION, listener_port, node_type, address, nonce }
}
}