From 4c749fdc29538e07d66c4a19d6bd29023e990cc4 Mon Sep 17 00:00:00 2001 From: Ryan Goodfellow Date: Fri, 12 Jan 2024 18:04:42 -0800 Subject: [PATCH] update copyrights --- Cargo.lock | 12 ++++++------ ddm/src/db.rs | 2 -- ddm/src/discovery.rs | 2 -- ddm/src/exchange.rs | 2 -- ddm/src/sm.rs | 2 -- 5 files changed, 6 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3253d2cd..ba6877e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1467,7 +1467,7 @@ dependencies = [ [[package]] name = "illumos-sys-hdrs" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" [[package]] name = "indexmap" @@ -1560,7 +1560,7 @@ dependencies = [ [[package]] name = "kstat-macro" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" dependencies = [ "quote", "syn 2.0.48", @@ -2230,7 +2230,7 @@ dependencies = [ [[package]] name = "opte" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" dependencies = [ "cfg-if", "dyn-clone", @@ -2246,7 +2246,7 @@ dependencies = [ [[package]] name = "opte-api" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" dependencies = [ "illumos-sys-hdrs", "ipnetwork", @@ -2258,7 +2258,7 @@ dependencies = [ [[package]] name = "opte-ioctl" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" dependencies = [ "libc", "libnet 0.1.0 (git+https://github.com/oxidecomputer/netadm-sys)", @@ -2272,7 +2272,7 @@ dependencies = [ [[package]] name = "oxide-vpc" version = "0.1.0" -source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#71eb2d3519b9904ee4a6e6fff819e23a92fcce6e" +source = "git+https://github.com/oxidecomputer/opte?branch=boundary-services-overlay-flow-pinning#73d4669ea213d0b7aca35c4babb6fd09ed51d29e" dependencies = [ "cfg-if", "illumos-sys-hdrs", 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};