()
| 233 | } |
| 234 | |
| 235 | pub fn allocate_vsock_cid() -> u32 { |
| 236 | NEXT_VSOCK_CID.fetch_add(1, Ordering::Relaxed) |
| 237 | } |
| 238 | |
| 239 | /// Generate a locally-administered MAC from sandbox ID using FNV-1a. |
| 240 | pub fn mac_from_sandbox_id(sandbox_id: &str) -> [u8; 6] { |
no outgoing calls