From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mogw0739.ocn.ad.jp (mogw0739.ocn.ad.jp [153.149.232.40]) by dpdk.org (Postfix) with ESMTP id 9B52C7272 for ; Thu, 10 May 2018 13:11:54 +0200 (CEST) Received: from mf-smf-ucb036c2 (mf-smf-ucb036c2.ocn.ad.jp [153.153.66.234]) by mogw0739.ocn.ad.jp (Postfix) with ESMTP id 18BE1200479; Thu, 10 May 2018 20:11:53 +0900 (JST) Received: from ntt.pod01.mv-mta-ucb025 ([153.149.142.99]) by mf-smf-ucb036c2 with ESMTP id GjU2fPkUHXAJnGjUHf3Uzw; Thu, 10 May 2018 20:11:53 +0900 Received: from smtp.ocn.ne.jp ([153.149.227.134]) by ntt.pod01.mv-mta-ucb025 with id kbBs1x00H2ud8JZ01bBsE3; Thu, 10 May 2018 11:11:53 +0000 Received: from localhost.localdomain (sp1-66-97-253.msc.spmode.ne.jp [1.66.97.253]) by smtp.ocn.ne.jp (Postfix) with ESMTPA; Thu, 10 May 2018 20:11:52 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com Cc: spp@dpdk.org, tdelanerolle@linuxfoundation.org, tim.odriscoll@intel.com, jim.st.leger@intel.com, Yasufumi Ogawa Date: Thu, 10 May 2018 20:10:23 +0900 Message-Id: <20180510111028.33837-9-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.13.1 In-Reply-To: <20180510111028.33837-1-ogawa.yasufumi@lab.ntt.co.jp> References: <20180423055414.7049-1-ogawa.yasufumi@lab.ntt.co.jp> <20180510111028.33837-1-ogawa.yasufumi@lab.ntt.co.jp> Subject: [spp] [PATCH v2 08/13] controller: add NTT to license description X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2018 11:11:55 -0000 From: Yasufumi Ogawa This is the final patch for updating license of SPP controller to add NTT beside Intel. Signed-off-by: Yasufumi Ogawa --- src/controller/conn_thread.py | 1 + src/controller/shell.py | 1 + src/controller/spp.py | 1 + src/controller/spp_common.py | 1 + src/spp.py | 1 + 5 files changed, 5 insertions(+) diff --git a/src/controller/conn_thread.py b/src/controller/conn_thread.py index e42b0e8..6325843 100644 --- a/src/controller/conn_thread.py +++ b/src/controller/conn_thread.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation from Queue import Queue import select diff --git a/src/controller/shell.py b/src/controller/shell.py index eac6aec..e0d13ca 100644 --- a/src/controller/shell.py +++ b/src/controller/shell.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation import cmd import json diff --git a/src/controller/spp.py b/src/controller/spp.py index 9c13d59..757a1d4 100644 --- a/src/controller/spp.py +++ b/src/controller/spp.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation from __future__ import print_function diff --git a/src/controller/spp_common.py b/src/controller/spp_common.py index d89461b..c507d55 100644 --- a/src/controller/spp_common.py +++ b/src/controller/spp_common.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation import logging import os diff --git a/src/spp.py b/src/spp.py index 5c63924..f52e063 100755 --- a/src/spp.py +++ b/src/spp.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation from controller import spp import sys -- 2.13.1