get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/55311/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 55311,
    "url": "https://patches.dpdk.org/api/patches/55311/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20190625134321.71595-1-roy.fan.zhang@intel.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<20190625134321.71595-1-roy.fan.zhang@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190625134321.71595-1-roy.fan.zhang@intel.com",
    "date": "2019-06-25T13:43:19",
    "name": "[v2,0/2] ipsec: ECN and DSCP header reconstruction.",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 304,
        "url": "https://patches.dpdk.org/api/people/304/?format=api",
        "name": "Fan Zhang",
        "email": "roy.fan.zhang@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20190625134321.71595-1-roy.fan.zhang@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/55311/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/55311/checks/",
    "tags": {},
    "related": [],
    "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 1D7631BA56;\n\tTue, 25 Jun 2019 15:49:17 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id B93B81B9C0\n\tfor <dev@dpdk.org>; Tue, 25 Jun 2019 15:49:15 +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\t25 Jun 2019 06:49:14 -0700",
            "from silpixa00398673.ir.intel.com (HELO\n\tsilpixa00398673.ger.corp.intel.com) ([10.237.223.136])\n\tby orsmga008.jf.intel.com with ESMTP; 25 Jun 2019 06:49:13 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.63,416,1557212400\"; d=\"scan'208\";a=\"155514553\"",
        "From": "Fan Zhang <roy.fan.zhang@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com, konstantin.ananyev@intel.com,\n\tFan Zhang <roy.fan.zhang@intel.com>",
        "Date": "Tue, 25 Jun 2019 14:43:19 +0100",
        "Message-Id": "<20190625134321.71595-1-roy.fan.zhang@intel.com>",
        "X-Mailer": "git-send-email 2.14.5",
        "In-Reply-To": "<20190517160319.2468-1-marko.kovacevic@intel.com>",
        "References": "<20190517160319.2468-1-marko.kovacevic@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/2] ipsec: ECN and DSCP header reconstruction.",
        "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": "This patchset adds the ECN and DSCP tunnel mode header reconstruction\nsupport for rte_ipsec library. The ipsec-secgw sample application is\nupdated with the feature's enabling and a python3 script for testing\nthe correctness of the implementation.\n\nThis patchset depends on the following patchset\n\"[v2,0/4] IPv6 with options support for IPsec transport\"\n(http://patchwork.dpdk.org/cover/55238/)\n\nv2:\n- Fixed a few bugs.\n- Updated according to Konstantin's comments.\n- Added python script for testing.\n\nFan Zhang (1):\n  examples/ipsec-secgw: support header reconstruction\n\nMarko Kovacevic (1):\n  lib/ipsec: add support for header construction\n\n doc/guides/rel_notes/release_19_08.rst             |   6 +\n examples/ipsec-secgw/sa.c                          |   2 +\n examples/ipsec-secgw/test/run_test.sh              |   3 +-\n .../test/tun_null_header_reconstruct.py            | 477 +++++++++++++++++++++\n lib/librte_ipsec/esp_inb.c                         |  14 +-\n lib/librte_ipsec/esp_outb.c                        |   4 +-\n lib/librte_ipsec/iph.h                             | 134 +++++-\n lib/librte_ipsec/rte_ipsec_sa.h                    |  25 ++\n lib/librte_ipsec/sa.c                              |  17 +\n lib/librte_ipsec/sa.h                              |   2 +\n lib/librte_net/rte_ip.h                            |  11 +\n lib/librte_security/rte_security.h                 |   9 +\n 12 files changed, 692 insertions(+), 12 deletions(-)\n create mode 100755 examples/ipsec-secgw/test/tun_null_header_reconstruct.py",
    "diff": null,
    "prefixes": [
        "v2",
        "0/2"
    ]
}