diff options
Diffstat (limited to 'examples/ip_pipeline/main.c')
-rw-r--r-- | examples/ip_pipeline/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/ip_pipeline/main.c b/examples/ip_pipeline/main.c index a69facee..97d1e91c 100644 --- a/examples/ip_pipeline/main.c +++ b/examples/ip_pipeline/main.c @@ -14,6 +14,7 @@ #include "cli.h" #include "conn.h" #include "kni.h" +#include "cryptodev.h" #include "link.h" #include "mempool.h" #include "pipeline.h" @@ -210,6 +211,14 @@ main(int argc, char **argv) return status; } + /* Sym Crypto */ + status = cryptodev_init(); + if (status) { + printf("Error: Cryptodev initialization failed (%d)\n", + status); + return status; + } + /* Action */ status = port_in_action_profile_init(); if (status) { |