examples/ipsec-secgw: enable flow based distribution
[dpdk.git] / examples / ipsec-secgw / parser.h
index be02537..a0ff7e1 100644 (file)
@@ -2,26 +2,27 @@
  * Copyright(c) 2016 Intel Corporation
  */
 
+#ifndef __PARSER_H
+#define __PARSER_H
+
 #include <sys/types.h>
 #include <netinet/in.h>
 #include <netinet/ip.h>
-
-#ifndef __PARSER_H
-#define __PARSER_H
+#include <string.h>
 
 struct parse_status {
        int status;
        char parse_msg[256];
 };
 
-#define        APP_CHECK(exp, status, fmt, ...)                                \
+#define        APP_CHECK(exp, st, fmt, ...)                                    \
 do {                                                                   \
        if (!(exp)) {                                                   \
-               sprintf(status->parse_msg, fmt "\n",                    \
+               sprintf((st)->parse_msg, fmt "\n",                      \
                        ## __VA_ARGS__);                                \
-               status->status = -1;                                    \
+               (st)->status = -1;                                      \
        } else                                                          \
-               status->status = 0;                                     \
+               (st)->status = 0;                                       \
 } while (0)
 
 #define APP_CHECK_PRESENCE(val, str, status)                           \
@@ -66,14 +67,23 @@ parse_ipv6_addr(const char *token, struct in6_addr *ipv6, uint32_t *mask);
 int
 parse_range(const char *token, uint16_t *low, uint16_t *high);
 
+void
+sp4_sort_arr(void);
+
 void
 parse_sp4_tokens(char **tokens, uint32_t n_tokens,
        struct parse_status *status);
 
+void
+sp6_sort_arr(void);
+
 void
 parse_sp6_tokens(char **tokens, uint32_t n_tokens,
        struct parse_status *status);
 
+void
+sa_sort_arr(void);
+
 void
 parse_sa_tokens(char **tokens, uint32_t n_tokens,
        struct parse_status *status);