Browse files

Update LICENSE.txt and license header on files.

  • Loading branch information...
1 parent cb4361b commit 063fb64c8b828d37a962f57d7b66319597bff5f0 @NTaylorMullen NTaylorMullen committed May 1, 2015
Showing with 33 additions and 33 deletions.
  1. +1 −1 LICENSE.txt
  2. +1 −1 src/Kestrel/Properties/AssemblyInfo.cs
  3. +1 −1 src/Kestrel/ServerFactory.cs
  4. +1 −1 src/Kestrel/ServerInformation.cs
  5. +1 −1 src/Kestrel/ServerRequest.cs
  6. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/Connection.cs
  7. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/Frame.cs
  8. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/FrameDuplexStream.cs
  9. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/FrameRequestStream.cs
  10. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/FrameResponseStream.cs
  11. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/Listener.cs
  12. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/MemoryPool.cs
  13. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/MemoryPoolTextWriter.cs
  14. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/MessageBody.cs
  15. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/MessageBodyExchanger.cs
  16. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/ReasonPhrases.cs
  17. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/SocketInput.cs
  18. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Http/SocketOutput.cs
  19. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Infrastructure/Disposable.cs
  20. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Infrastructure/KestrelThread.cs
  21. +1 −1 src/Microsoft.AspNet.Server.Kestrel/KestrelEngine.cs
  22. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/Libuv.cs
  23. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/PlatformApis.cs
  24. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UcAsyncHandle.cs
  25. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvHandle.cs
  26. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvLoopHandle.cs
  27. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvMemory.cs
  28. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvShutdownReq.cs
  29. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvStreamHandle.cs
  30. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvTcpHandle.cs
  31. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Networking/UvWriteRequest.cs
  32. +1 −1 src/Microsoft.AspNet.Server.Kestrel/Properties/AssemblyInfo.cs
  33. +1 −1 test/Microsoft.AspNet.Server.KestrelTests/NetworkingTests.cs
View
2 LICENSE.txt
@@ -1,4 +1,4 @@
-Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+Copyright (c) .NET Foundation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
these files except in compliance with the License. You may obtain a copy of the
View
2 src/Kestrel/Properties/AssemblyInfo.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
View
2 src/Kestrel/ServerFactory.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Kestrel/ServerInformation.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Kestrel/ServerRequest.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/Connection.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/Frame.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/FrameDuplexStream.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/FrameRequestStream.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/FrameResponseStream.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/Listener.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Server.Kestrel.Networking;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/MemoryPool.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/MemoryPoolTextWriter.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/MessageBody.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/MessageBodyExchanger.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/ReasonPhrases.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Globalization;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/SocketInput.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Http/SocketOutput.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Server.Kestrel.Networking;
View
2 src/Microsoft.AspNet.Server.Kestrel/Infrastructure/Disposable.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Infrastructure/KestrelThread.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Server.Kestrel.Networking;
View
2 src/Microsoft.AspNet.Server.Kestrel/KestrelEngine.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/Libuv.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/PlatformApis.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UcAsyncHandle.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvHandle.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvLoopHandle.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvMemory.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#define TRACE
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvShutdownReq.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvStreamHandle.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvTcpHandle.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Networking/UvWriteRequest.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
View
2 src/Microsoft.AspNet.Server.Kestrel/Properties/AssemblyInfo.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Reflection;
View
2 test/Microsoft.AspNet.Server.KestrelTests/NetworkingTests.cs
@@ -1,4 +1,4 @@
-// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
+// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Server.Kestrel;

0 comments on commit 063fb64

Please sign in to comment.