odp_ipsec now calls the helper command line parsing so that helper
can collect its options. Hence enabling process mode run.

Signed-off-by: Christophe Milard <christophe.mil...@linaro.org>
---
 example/ipsec/odp_ipsec.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/example/ipsec/odp_ipsec.c b/example/ipsec/odp_ipsec.c
index 4d08772..fb4385f 100644
--- a/example/ipsec/odp_ipsec.c
+++ b/example/ipsec/odp_ipsec.c
@@ -1381,7 +1381,7 @@ static void parse_args(int argc, char *argv[], 
appl_args_t *appl_args)
        int rc = 0;
        int i;
 
-       static struct option longopts[] = {
+       static const struct option longopts[] = {
                {"count", required_argument, NULL, 'c'},
                {"interface", required_argument, NULL, 'i'},    /* return 'i' */
                {"mode", required_argument, NULL, 'm'},         /* return 'm' */
@@ -1395,13 +1395,19 @@ static void parse_args(int argc, char *argv[], 
appl_args_t *appl_args)
                {NULL, 0, NULL, 0}
        };
 
+       static const char *shortopts = "+c:i:m:h:r:p:a:e:t:s:";
+
+       /* let helper collect its own arguments (e.g. --odph_proc) */
+       odph_parse_options(argc, argv, shortopts, longopts);
+
        printf("\nParsing command line options\n");
 
        appl_args->mode = 0;  /* turn off async crypto API by default */
 
+       opterr = 0; /* do not issue errors on helper options */
+
        while (!rc) {
-               opt = getopt_long(argc, argv, "+c:i:m:h:r:p:a:e:t:s:",
-                                 longopts, &long_index);
+               opt = getopt_long(argc, argv, shortopts, longopts, &long_index);
 
                if (-1 == opt)
                        break;  /* No more options */
-- 
2.5.0

_______________________________________________
lng-odp mailing list
lng-odp@lists.linaro.org
https://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to