Jasvinder Singh 4bbf8e30aa examples/ip_pipeline: add CLI interface
CLI interface allowing connectivity with external agent (e.g. telnet,
netcat, Python script, etc) is added to the application.

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
2018-04-05 18:23:49 +02:00

19 lines
325 B
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2018 Intel Corporation
*/
#ifndef __INCLUDE_CLI_H__
#define __INCLUDE_CLI_H__
#include <stddef.h>
void
cli_process(char *in, char *out, size_t out_size);
int
cli_script_process(const char *file_name,
size_t msg_in_len_max,
size_t msg_out_len_max);
#endif