Show a cover letter.

GET /api/covers/54491/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 54491,
    "url": "http://patches.dpdk.org/api/covers/54491/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190606115151.27805-1-konstantin.ananyev@intel.com/",
    "project": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<20190606115151.27805-1-konstantin.ananyev@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190606115151.27805-1-konstantin.ananyev@intel.com",
    "date": "2019-06-06T11:51:46",
    "name": "[v2,0/5] examples/ipsec-secgw: support packet",
    "submitter": {
        "id": 33,
        "url": "http://patches.dpdk.org/api/people/33/?format=api",
        "name": "Ananyev, Konstantin",
        "email": "konstantin.ananyev@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190606115151.27805-1-konstantin.ananyev@intel.com/mbox/",
    "series": [
        {
            "id": 4928,
            "url": "http://patches.dpdk.org/api/series/4928/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4928",
            "date": "2019-06-06T11:51:46",
            "name": "examples/ipsec-secgw: support packet",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/4928/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/54491/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 2A85D1B9A9;\n\tThu,  6 Jun 2019 13:52:05 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id 769EF1B9A7\n\tfor <dev@dpdk.org>; Thu,  6 Jun 2019 13:52:03 +0200 (CEST)",
            "from orsmga008.jf.intel.com ([10.7.209.65])\n\tby fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t06 Jun 2019 04:52:02 -0700",
            "from sivswdev08.ir.intel.com ([10.237.217.47])\n\tby orsmga008.jf.intel.com with ESMTP; 06 Jun 2019 04:52:00 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "From": "Konstantin Ananyev <konstantin.ananyev@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com,\n\tKonstantin Ananyev <konstantin.ananyev@intel.com>",
        "Date": "Thu,  6 Jun 2019 12:51:46 +0100",
        "Message-Id": "<20190606115151.27805-1-konstantin.ananyev@intel.com>",
        "X-Mailer": "git-send-email 2.18.0",
        "In-Reply-To": "<20190527184448.21264-1-konstantin.ananyev@intel.com>",
        "References": "<20190527184448.21264-1-konstantin.ananyev@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/5] examples/ipsec-secgw: support packet",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://mails.dpdk.org/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "v1 -> v2\n - merge with latest mainline\n - update sample app guide\n\nAdd into ipsec-secgw ability to fragment packet bigger then mtu,\nand reassemble fragmented packet.\nTo support these features ipsec-secgw relies on librte_ipsec ability\nto handle multi-segment packets.\nAlso when reassemble/fragmentation support is enabled, attached\ncrypto devices have to support 'In Place SGL' offload capability.\n\nTo be able to work properly these changes require the following patches:\n  [1] lib/librte_ip_frag: Remove PKT_TX_IP_CKSUM offload flags\n      http://patches.dpdk.org/patch/53475/mbox/\n  [2] ip_frag: fix IPv6 fragment size calculation\n      http://patches.dpdk.org/patch/54489/mbox/\n  [3] ipsec: support multi-segment packets\n      http://patches.dpdk.org/patch/53948/mbox/\nto be applied first.\n\nKonstantin Ananyev (5):\n  examples/ipsec-secgw: fix invalid packet length\n  examples/ipsec-secgw: support packet fragmentation and reassembly\n  examples/ipsec-secgw: add multi-segment test cases\n  examples/ipsec-secgw: add bypass test case\n  doc: update ipsec-secgw guide\n\n doc/guides/sample_app_ug/ipsec_secgw.rst |  22 +-\n examples/ipsec-secgw/ipsec-secgw.c       | 404 ++++++++++++++++++++---\n examples/ipsec-secgw/ipsec.h             |   1 +\n examples/ipsec-secgw/meson.build         |   2 +-\n examples/ipsec-secgw/test/bypass_defs.sh |  45 +++\n examples/ipsec-secgw/test/common_defs.sh |  18 +-\n examples/ipsec-secgw/test/data_rxtx.sh   |  18 +-\n examples/ipsec-secgw/test/linux_test4.sh |  17 +-\n examples/ipsec-secgw/test/linux_test6.sh |  17 +-\n examples/ipsec-secgw/test/run_test.sh    |   5 +-\n 10 files changed, 487 insertions(+), 62 deletions(-)\n create mode 100644 examples/ipsec-secgw/test/bypass_defs.sh"
}