We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b79a1 commit eb04e60Copy full SHA for eb04e60
src/neighbour/add.rs
@@ -51,6 +51,7 @@ impl NeighbourAddRequest {
51
}
52
53
54
+ #[cfg(not(target_os = "freebsd"))]
55
pub(crate) fn new_bridge(handle: Handle, index: u32, lla: &[u8]) -> Self {
56
let mut message = NeighbourMessage::default();
57
src/neighbour/handle.rs
@@ -23,6 +23,7 @@ impl NeighbourHandle {
23
NeighbourAddRequest::new(self.0.clone(), index, destination)
24
25
26
27
/// Add a new fdb entry (equivalent to `bridge fdb add`)
28
pub fn add_bridge(&self, index: u32, lla: &[u8]) -> NeighbourAddRequest {
29
NeighbourAddRequest::new_bridge(self.0.clone(), index, lla)
0 commit comments