You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by mi...@apache.org on 2022/06/29 08:32:36 UTC

[activemq-nms-openwire] branch michaelandrepearce-patch-1 created (now da1f858)

This is an automated email from the ASF dual-hosted git repository.

michaelpearce pushed a change to branch michaelandrepearce-patch-1
in repository https://gitbox.apache.org/repos/asf/activemq-nms-openwire.git


      at da1f858  AMQNET-572 Fix missing code headers

This branch includes the following new commits:

     new da1f858  AMQNET-572 Fix missing code headers

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[activemq-nms-openwire] 01/01: AMQNET-572 Fix missing code headers

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelpearce pushed a commit to branch michaelandrepearce-patch-1
in repository https://gitbox.apache.org/repos/asf/activemq-nms-openwire.git

commit da1f85886e495037a528d32e1aa71ab1c9d19ecd
Author: Michael André Pearce <mi...@me.com>
AuthorDate: Wed Jun 29 09:32:32 2022 +0100

    AMQNET-572 Fix missing code headers
    
    Fix missing code header with introduced class in original AMQNET-572 work.
---
 src/Transport/Tcp/SslContext.cs | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/src/Transport/Tcp/SslContext.cs b/src/Transport/Tcp/SslContext.cs
index db5b723..fd2119e 100644
--- a/src/Transport/Tcp/SslContext.cs
+++ b/src/Transport/Tcp/SslContext.cs
@@ -1,4 +1,21 @@
-using System;
+/*
+ * 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.
+ */
+
+using System;
 using System.Collections.Generic;
 namespace Apache.NMS.ActiveMQ.Transport.Tcp
 {