From 758ff26dd8c511fecf925017f1705186bad54ed8 Mon Sep 17 00:00:00 2001 From: Yicheng Qin Date: Sun, 22 Feb 2015 23:16:18 -0800 Subject: [PATCH] rafthttp: add copyright header --- rafthttp/coder.go | 14 ++++++++++++++ rafthttp/message.go | 14 ++++++++++++++ rafthttp/stream.go | 14 ++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/rafthttp/coder.go b/rafthttp/coder.go index 68831cdc6..de6ac6cc0 100644 --- a/rafthttp/coder.go +++ b/rafthttp/coder.go @@ -1,3 +1,17 @@ +// Copyright 2015 CoreOS, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package rafthttp import "github.com/coreos/etcd/raft/raftpb" diff --git a/rafthttp/message.go b/rafthttp/message.go index 99246f816..6616872e0 100644 --- a/rafthttp/message.go +++ b/rafthttp/message.go @@ -1,3 +1,17 @@ +// Copyright 2015 CoreOS, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package rafthttp import ( diff --git a/rafthttp/stream.go b/rafthttp/stream.go index 02dc8698d..9bb3971de 100644 --- a/rafthttp/stream.go +++ b/rafthttp/stream.go @@ -1,3 +1,17 @@ +// Copyright 2015 CoreOS, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package rafthttp import (