blob: 5c37c84f50de18980ecf0fcd70ed070d57ab2ef1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- datadog-sidecar/src/setup/unix.rs.orig 2024-05-03 17:30:09 UTC
+++ datadog-sidecar/src/setup/unix.rs
@@ -111,6 +111,9 @@ impl Default for SharedDirLiaison {
}
}
+#[cfg(target_os = "freebsd")]
+pub type DefaultLiason = SharedDirLiaison;
+
#[cfg(target_os = "linux")]
mod linux {
use std::{io, os::unix::net::UnixListener, path::PathBuf};
|