:orphan: .. index:: pair: group; Test API to use packetdrill test tool .. _doxid-group__tapi__packetdrill: Test API to use packetdrill test tool ===================================== .. toctree:: :hidden: enum_tapi_packetdrill_ip_version_t.rst struct_tapi_packetdrill_opts.rst Overview ~~~~~~~~ Generic API to use packetdrill test tool. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`tapi_packetdrill_opts` :ref:`tapi_packetdrill_opts`; typedef struct :ref:`tapi_packetdrill_app` :ref:`tapi_packetdrill_app`; // enums enum :ref:`tapi_packetdrill_ip_version_t`; // structs struct :ref:`tapi_packetdrill_opts`; // global functions :ref:`te_errno` :ref:`tapi_packetdrill_app_init`(:ref:`tapi_job_factory_t`* factory, :ref:`tapi_packetdrill_opts`* opts, :ref:`tapi_packetdrill_app`** app); void :ref:`tapi_packetdrill_app_destroy`(:ref:`tapi_packetdrill_app`* app); :ref:`te_errno` :ref:`tapi_packetdrill_app_start`(:ref:`tapi_packetdrill_app`* app); :ref:`te_errno` :ref:`tapi_packetdrill_app_wait`(:ref:`tapi_packetdrill_app`* app, int timeout_s); void :ref:`tapi_packetdrill_print_logs`(:ref:`tapi_packetdrill_app`* app); // macros #define :target:`IF_NAMESIZE` .. _details-group__tapi__packetdrill: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Generic API to use packetdrill test tool. Copyright (C) 2018-2022 OKTET Labs Ltd. All rights reserved. Typedefs -------- .. index:: pair: typedef; tapi_packetdrill_opts .. _doxid-group__tapi__packetdrill_1ga4c03bb408f101df18af009a53349e3d1: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_packetdrill_opts` tapi_packetdrill_opts Packetdrill test tool options .. index:: pair: typedef; tapi_packetdrill_app .. _doxid-group__tapi__packetdrill_1gac10b47ed85bab9226e6956c657081b40: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tapi_packetdrill_app` tapi_packetdrill_app Packetdrill test tool context Global Functions ---------------- .. index:: pair: function; tapi_packetdrill_app_init .. _doxid-group__tapi__packetdrill_1gac23b92430ee9d3bb8a93b058379f6af1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_packetdrill_app_init(:ref:`tapi_job_factory_t`* factory, :ref:`tapi_packetdrill_opts`* opts, :ref:`tapi_packetdrill_app`** app) Initiate packetdrill app. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - factory - Job factory. * - opts - Packetdrill options. * - app - The application handle. .. rubric:: Returns: Status code. .. rubric:: See also: :ref:`tapi_packetdrill_app_destroy ` .. index:: pair: function; tapi_packetdrill_app_destroy .. _doxid-group__tapi__packetdrill_1ga49e464cf431f18c2d3f456364782e65b: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_packetdrill_app_destroy(:ref:`tapi_packetdrill_app`* app) Destroy packetdrill app. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - app - Packetdrill app context. .. rubric:: See also: :ref:`tapi_packetdrill_app_init ` .. index:: pair: function; tapi_packetdrill_app_start .. _doxid-group__tapi__packetdrill_1gaee71a9be9f04254c150e408f5d7f88fb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_packetdrill_app_start(:ref:`tapi_packetdrill_app`* app) Start packetdrill app .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - app - Packetdrill app context. .. rubric:: Returns: Status code. .. rubric:: See also: tapi_packetdrill_app_stop .. index:: pair: function; tapi_packetdrill_app_wait .. _doxid-group__tapi__packetdrill_1ga05bfd809f9b0b99f777a170ee4fb67ce: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_packetdrill_app_wait(:ref:`tapi_packetdrill_app`* app, int timeout_s) Wait while packetdrill client-specific app finishes its work. Note, function jumps to cleanup if timeout is expired. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - app - Packetdrill app context. * - timeout_s - Time to wait for app results It MUST be big enough to finish client normally. .. rubric:: Returns: Status code. .. index:: pair: function; tapi_packetdrill_print_logs .. _doxid-group__tapi__packetdrill_1ga65781d6e29387a546fb957165889d532: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_packetdrill_print_logs(:ref:`tapi_packetdrill_app`* app) Print logs. The function reads packetdrill app output (stdout, stderr). This function makes sense only with client-specific app. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - app - Packetdrill app context.