You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2015/07/22 16:36:47 UTC

trafficserver git commit: Update license headers

Repository: trafficserver
Updated Branches:
  refs/heads/master 6448a82b4 -> f526ed540


Update license headers


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/f526ed54
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/f526ed54
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/f526ed54

Branch: refs/heads/master
Commit: f526ed5405df18747b9697c2d06307c2685e374d
Parents: 6448a82
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Jul 22 09:36:36 2015 -0500
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Jul 22 09:36:36 2015 -0500

----------------------------------------------------------------------
 lib/raft/test_makefile          | 17 +++++++++++++++++
 proxy/http2/test_Huffmancode.cc | 23 +++++++++++++++++++++++
 2 files changed, 40 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f526ed54/lib/raft/test_makefile
----------------------------------------------------------------------
diff --git a/lib/raft/test_makefile b/lib/raft/test_makefile
index 4520307..c7e612b 100644
--- a/lib/raft/test_makefile
+++ b/lib/raft/test_makefile
@@ -1,3 +1,20 @@
+#
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you 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.
+
 #OPTIMIZE=1
 DEBUG=1
 #PROFILE=1

http://git-wip-us.apache.org/repos/asf/trafficserver/blob/f526ed54/proxy/http2/test_Huffmancode.cc
----------------------------------------------------------------------
diff --git a/proxy/http2/test_Huffmancode.cc b/proxy/http2/test_Huffmancode.cc
index e7a973f..e207de6 100644
--- a/proxy/http2/test_Huffmancode.cc
+++ b/proxy/http2/test_Huffmancode.cc
@@ -1,3 +1,26 @@
+/** @file
+
+    Basic test cases for the Huffman encoding.
+
+    @section license License
+
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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.
+*/
+
 #include "HuffmanCodec.h"
 #include <stdlib.h>
 #include <iostream>