From aa7305ee8dfafcee2f0519b779e68cb02f51faf1 Mon Sep 17 00:00:00 2001 From: "hashicorp-copywrite[bot]" <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 16:04:58 +0000 Subject: [PATCH] [COMPLIANCE] Add Copyright and License Headers --- addr.go | 3 +++ bench_test.go | 3 +++ const.go | 3 +++ const_test.go | 3 +++ mux.go | 3 +++ session.go | 3 +++ session_test.go | 3 +++ stream.go | 3 +++ util.go | 3 +++ util_test.go | 3 +++ 10 files changed, 30 insertions(+) diff --git a/addr.go b/addr.go index f6a0019..657dd89 100644 --- a/addr.go +++ b/addr.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/bench_test.go b/bench_test.go index 2f890ce..7dc75e4 100644 --- a/bench_test.go +++ b/bench_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/const.go b/const.go index 2fdbf84..2eed41f 100644 --- a/const.go +++ b/const.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/const_test.go b/const_test.go index 153da18..ff49793 100644 --- a/const_test.go +++ b/const_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/mux.go b/mux.go index d3d5b3f..fa4ca58 100644 --- a/mux.go +++ b/mux.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/session.go b/session.go index c08c4da..96ca49e 100644 --- a/session.go +++ b/session.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/session_test.go b/session_test.go index d95780a..2a03b5f 100644 --- a/session_test.go +++ b/session_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/stream.go b/stream.go index df70ddf..08c69dd 100644 --- a/stream.go +++ b/stream.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/util.go b/util.go index 4462518..ceddea8 100644 --- a/util.go +++ b/util.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import ( diff --git a/util_test.go b/util_test.go index dd14623..076dc9c 100644 --- a/util_test.go +++ b/util_test.go @@ -1,3 +1,6 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + package yamux import (