From patchwork Thu Mar 20 03:08:37 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Holmes X-Patchwork-Id: 26631 Return-Path: X-Original-To: linaro@patches.linaro.org Delivered-To: linaro@patches.linaro.org Received: from mail-yh0-f72.google.com (mail-yh0-f72.google.com [209.85.213.72]) by ip-10-151-82-157.ec2.internal (Postfix) with ESMTPS id EFE5A203C3 for ; Thu, 20 Mar 2014 03:08:50 +0000 (UTC) Received: by mail-yh0-f72.google.com with SMTP id f10sf695848yha.3 for ; Wed, 19 Mar 2014 20:08:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:to:cc:subject:date:message-id :x-original-sender:x-original-authentication-results:precedence :mailing-list:list-id:list-post:list-help:list-archive :list-unsubscribe:content-type; bh=NaV+2dJjZRsfzRN5JbozyQsG8GkATXr/Z9pzriqS14M=; b=MUF5M5w+CWn1hyCfgJ+ZcC/ey+us2libPYxs6jdMNlbLpYBT+ErElcbFjKY504X6qt xUW1/qm/nev9qOUui0y6jci19UaK9Lqc/lYsS6Mhy9LRQU0HpDVT+2wsV2pPCDVVmRdp WDrGS2m8LtrICKGLPGrY1Ldw1TNKGM6+wdBBNNmor51RC+1Ns/pv3F/CBHeoDiNE9Lzh BxpiGuwhBf/G5LgxsVE6YventmvUrDZiXwL83FteD4D5W+TkNpzkhxNre3cu0xSM1NNq Bl61xfkCSYlJOUT0BeWGwtdAtYfQzpBuhSvA1b+Sx/RB1u24czkg4Vz8kCkjrGSjItzA uSJQ== X-Gm-Message-State: ALoCoQkTZ9qdXZqXvB9yfim24GbV0RzOAe9qwhetr0kIWZdzueZvaR3f/b0JrtXMelecpsJoOrKf X-Received: by 10.236.43.14 with SMTP id k14mr5017963yhb.37.1395284930555; Wed, 19 Mar 2014 20:08:50 -0700 (PDT) MIME-Version: 1.0 X-BeenThere: lng-odp@linaro.org Received: by 10.140.24.110 with SMTP id 101ls64082qgq.88.gmail; Wed, 19 Mar 2014 20:08:50 -0700 (PDT) X-Received: by 10.224.65.194 with SMTP id k2mr1978366qai.59.1395284930358; Wed, 19 Mar 2014 20:08:50 -0700 (PDT) Received: from mail-qa0-f49.google.com (mail-qa0-f49.google.com [209.85.216.49]) by mx.google.com with ESMTPS id b7si202253qad.14.2014.03.19.20.08.50 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 19 Mar 2014 20:08:50 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.216.49 is neither permitted nor denied by best guess record for domain of mike.holmes@linaro.org) client-ip=209.85.216.49; Received: by mail-qa0-f49.google.com with SMTP id j7so245489qaq.8 for ; Wed, 19 Mar 2014 20:08:50 -0700 (PDT) X-Received: by 10.224.114.209 with SMTP id f17mr47094813qaq.40.1395284928001; Wed, 19 Mar 2014 20:08:48 -0700 (PDT) Received: from fedora1.holmesfamily.ws (c-98-221-136-245.hsd1.nj.comcast.net. [98.221.136.245]) by mx.google.com with ESMTPSA id x5sm1047595qaj.9.2014.03.19.20.08.47 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 19 Mar 2014 20:08:47 -0700 (PDT) From: Mike Holmes To: lng-odp@linaro.org Cc: Mike Holmes Subject: [lng-odp] [PATCH] Group IP protocols in doxygen Date: Wed, 19 Mar 2014 23:08:37 -0400 Message-Id: <1395284917-12586-1-git-send-email-mike.holmes@linaro.org> X-Mailer: git-send-email 1.9.1 X-Original-Sender: mike.holmes@linaro.org X-Original-Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.216.49 is neither permitted nor denied by best guess record for domain of mike.holmes@linaro.org) smtp.mail=mike.holmes@linaro.org Precedence: list Mailing-list: list lng-odp@linaro.org; contact lng-odp+owners@linaro.org List-ID: X-Google-Group-Id: 474323889996 List-Post: , List-Help: , List-Archive: List-Unsubscribe: , Signed-off-by: Mike Holmes --- include/helper/odp_ip.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/helper/odp_ip.h b/include/helper/odp_ip.h index b13262c..147b915 100644 --- a/include/helper/odp_ip.h +++ b/include/helper/odp_ip.h @@ -121,7 +121,9 @@ typedef struct ODP_PACKED { ODP_ASSERT(sizeof(odp_ipv6hdr_t) == ODP_IPV6HDR_LEN, ODP_IPV6HDR_T__SIZE_ERROR); -/* IP protocol values (IPv4:'proto' or IPv6:'next_hdr') */ +/** @name + * IP protocol values (IPv4:'proto' or IPv6:'next_hdr') + * @{*/ #define ODP_IPPROTO_ICMP 0x01 /**< Internet Control Message Protocol (1) */ #define ODP_IPPROTO_TCP 0x06 /**< Transmission Control Protocol (6) */ #define ODP_IPPROTO_UDP 0x11 /**< User Datagram Protocol (17) */ @@ -129,6 +131,7 @@ ODP_ASSERT(sizeof(odp_ipv6hdr_t) == ODP_IPV6HDR_LEN, ODP_IPV6HDR_T__SIZE_ERROR); #define ODP_IPPROTO_FRAG 0x2C /**< Fragment (44) */ #define ODP_IPPROTO_AH 0x33 /**< Authentication Header (51) */ #define ODP_IPPROTO_ESP 0x32 /**< Encapsulating Security Payload (50) */ +/**@}*/ #ifdef __cplusplus }