1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::default::Default;
use super::super::super::common_types::*;

pub trait ParticipantTrait {
    fn protocol_version(&self) -> ProtocolVersion {
        Default::default()
    }

    fn vendor_id(&self) -> VendorId {
        [0,0]
    }

    fn default_unicast_locator_list(&self) -> &LocatorList;
    fn default_multicast_locator_list(&self) -> &LocatorList;
}