From 88b33ab4d4069bc582464f4c8d752ceb90cdfcc6 Mon Sep 17 00:00:00 2001 From: Ryan Goodfellow Date: Fri, 12 Jan 2024 18:04:42 -0800 Subject: [PATCH] update copyrights --- ddm/src/db.rs | 2 -- ddm/src/discovery.rs | 2 -- ddm/src/exchange.rs | 2 -- ddm/src/sm.rs | 2 -- 4 files changed, 8 deletions(-) diff --git a/ddm/src/db.rs b/ddm/src/db.rs index c3f5e75e..0e9c5427 100644 --- a/ddm/src/db.rs +++ b/ddm/src/db.rs @@ -2,8 +2,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// Copyright 2022 Oxide Computer Company - use schemars::{JsonSchema, JsonSchema_repr}; use serde::{Deserialize, Serialize}; use serde_repr::{Deserialize_repr, Serialize_repr}; diff --git a/ddm/src/discovery.rs b/ddm/src/discovery.rs index 25aa14d5..eb3df2f0 100644 --- a/ddm/src/discovery.rs +++ b/ddm/src/discovery.rs @@ -2,8 +2,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// Copyright 2022 Oxide Computer Company - //! This file implements the ddm router discovery mechanisms. These mechanisims //! are responsible for three primary things //! diff --git a/ddm/src/exchange.rs b/ddm/src/exchange.rs index 1f728f2a..107e37d1 100644 --- a/ddm/src/exchange.rs +++ b/ddm/src/exchange.rs @@ -2,8 +2,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// Copyright 2022 Oxide Computer Company - //! This file implements the ddm router prefix exchange mechanisms. These //! mechanisms are responsible for announcing and withdrawing prefix sets to and //! from peers. diff --git a/ddm/src/sm.rs b/ddm/src/sm.rs index a3fd19af..7ce60dc4 100644 --- a/ddm/src/sm.rs +++ b/ddm/src/sm.rs @@ -2,8 +2,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// Copyright 2022 Oxide Computer Company - use crate::db::{Db, Ipv6Prefix, RouterKind, TunnelOrigin}; use crate::exchange::{PathVector, TunnelUpdate, UnderlayUpdate, Update}; use crate::{dbg, discovery, err, exchange, inf, wrn};