mctx-core 0.1.0

Runtime-agnostic and portable IPv4 multicast sender library.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::PublicationId;
use std::net::SocketAddrV4;

/// Result of one multicast send call.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct SendReport {
    pub publication_id: PublicationId,
    pub destination: SocketAddrV4,
    pub bytes_sent: usize,
}