Skip to main content

NetflowServer

Struct NetflowServer 

Source
pub struct NetflowServer {
    pub initial_template_received: bool,
    pub socket: UdpSocket,
    pub receive_buffer: [u8; 2500],
    pub senders: Vec<NetflowSender>,
    pub db_conn: Arc<Mutex<Connection>>,
    /* private fields */
}

Fields§

§initial_template_received: bool§socket: UdpSocket§receive_buffer: [u8; 2500]§senders: Vec<NetflowSender>§db_conn: Arc<Mutex<Connection>>

Implementations§

Source§

impl NetflowServer

Source

pub fn new(addr_and_port: String, db_conn_srv: Arc<Mutex<Connection>>) -> Self

Source

pub fn run(&mut self)

Source

pub fn update_or_create_sender( &mut self, source_address: SocketAddr, template: NetflowTemplate, )

Source

pub fn start_receiving(&mut self) -> SocketAddr

Source

pub fn parse_flow_length(&self, message: &[u8]) -> u16

Source

pub fn parse_flow_template_id_from_template(&self, message: &[u8]) -> u16

Source

pub fn parse_flow_template_id_from_data(&self, message: &[u8]) -> u16

Source

pub fn parse_flow_field_count(&self, message: &[u8]) -> u16

Source

pub fn parse_flow_template(&mut self) -> NetflowTemplate

Source

pub fn parse_data_to_packet(&mut self, byte_count: usize, sender_index: usize)

Source

pub fn determine_packet_type(&self) -> PacketType

Source

pub fn wait_for_initial_template(&mut self) -> SocketAddr

Source

pub fn wait_for_netflow_data(&mut self) -> SocketAddr

Source

pub fn match_sender(&mut self, sender_ip: Ipv4Addr) -> Result<usize, Error>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.