From 801a7c76527a571c77dad8d3bd247e7039f73173 Mon Sep 17 00:00:00 2001 From: Cesar Blum Silveira Date: Mon, 17 Apr 2017 20:47:29 -0700 Subject: [PATCH] Add copyright header to TransportSocketOptions.cs. --- .../SocketTransportOptions.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/SocketTransportOptions.cs b/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/SocketTransportOptions.cs index d302399e5a..be34d292d8 100644 --- a/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/SocketTransportOptions.cs +++ b/src/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/SocketTransportOptions.cs @@ -1,4 +1,7 @@ -using System; +// 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; using System.Collections.Generic; using System.Text; @@ -7,6 +10,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets // TODO: Come up with some options public class SocketTransportOptions { - + } }