Browse Source

add missing copyright headers

Brad Fitzpatrick 11 years ago
parent
commit
08c3f55f15
4 changed files with 20 additions and 0 deletions
  1. 5 0
      errors.go
  2. 5 0
      frame.go
  3. 5 0
      h2server/h2server.go
  4. 5 0
      http2.go

+ 5 - 0
errors.go

@@ -1,3 +1,8 @@
+// Copyright 2014 The Go Authors.
+// See https://code.google.com/p/go/source/browse/CONTRIBUTORS
+// Licensed under the same terms as Go itself:
+// https://code.google.com/p/go/source/browse/LICENSE
+
 package http2
 
 import "fmt"

+ 5 - 0
frame.go

@@ -1,3 +1,8 @@
+// Copyright 2014 The Go Authors.
+// See https://code.google.com/p/go/source/browse/CONTRIBUTORS
+// Licensed under the same terms as Go itself:
+// https://code.google.com/p/go/source/browse/LICENSE
+
 package http2
 
 import (

+ 5 - 0
h2server/h2server.go

@@ -1,3 +1,8 @@
+// Copyright 2014 The Go Authors.
+// See https://code.google.com/p/go/source/browse/CONTRIBUTORS
+// Licensed under the same terms as Go itself:
+// https://code.google.com/p/go/source/browse/LICENSE
+
 package main
 
 import (

+ 5 - 0
http2.go

@@ -1,3 +1,8 @@
+// Copyright 2014 The Go Authors.
+// See https://code.google.com/p/go/source/browse/CONTRIBUTORS
+// Licensed under the same terms as Go itself:
+// https://code.google.com/p/go/source/browse/LICENSE
+
 // Package http2 implements the HTTP/2 protocol.
 //
 // It currently targets draft-13. See http://http2.github.io/