:orphan: .. index:: pair: group; Test API to control the storage FTP client .. _doxid-group__tapi__storage__client__ftp: Test API to control the storage FTP client ========================================== .. toctree:: :hidden: Overview ~~~~~~~~ Test API to FTP client routines. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct tapi_storage_client_ftp_context :target:`tapi_storage_client_ftp_context`; // global variables :ref:`tapi_storage_client_methods` :ref:`tapi_storage_client_ftp_methods`; // global functions :ref:`te_errno` :ref:`tapi_storage_client_ftp_context_init`(tapi_storage_client_ftp_context** context); void :ref:`tapi_storage_client_ftp_context_fini`(tapi_storage_client_ftp_context* context); :ref:`te_errno` :ref:`tapi_storage_client_ftp_init`(:ref:`rcf_rpc_server`* rpcs, const :ref:`tapi_storage_client_methods`* methods, :ref:`tapi_storage_auth_params`* auth, tapi_storage_client_ftp_context* context, :ref:`tapi_storage_client`* client); void :ref:`tapi_storage_client_ftp_fini`(:ref:`tapi_storage_client`* client); .. _details-group__tapi__storage__client__ftp: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Test API to FTP client routines. Copyright (C) 2004-2022 OKTET Labs Ltd. All rights reserved. Global Variables ---------------- .. index:: pair: variable; tapi_storage_client_ftp_methods .. _doxid-group__tapi__storage__client__ftp_1ga977102af4b7e793b91bf9ce4418fcc74: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`tapi_storage_client_methods` tapi_storage_client_ftp_methods Pre initialized methods to operate the FTP client. It should be passed to ``tapi_storage_client_init`` to initialize the service. .. rubric:: See also: :ref:`tapi_storage_client_init ` Global Functions ---------------- .. index:: pair: function; tapi_storage_client_ftp_context_init .. _doxid-group__tapi__storage__client__ftp_1ga36805d29f82a66784ca737b2c831a8d8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_storage_client_ftp_context_init(tapi_storage_client_ftp_context** context) Initialize FTP client context. Context should be released with ``tapi_storage_client_ftp_context_fini`` when it is no longer needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - context - FTP client context handle. .. rubric:: Returns: Status code. .. rubric:: See also: :ref:`tapi_storage_client_ftp_context_fini ` .. index:: pair: function; tapi_storage_client_ftp_context_fini .. _doxid-group__tapi__storage__client__ftp_1gab1394318b0532a80a33be627b8a00b9a: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_storage_client_ftp_context_fini(tapi_storage_client_ftp_context* context) Release FTP client context that was initialized with ``tapi_storage_client_ftp_context_init``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - context - FTP client context handle. .. rubric:: See also: :ref:`tapi_storage_client_ftp_context_init ` .. index:: pair: function; tapi_storage_client_ftp_init .. _doxid-group__tapi__storage__client__ftp_1gabf623735f4dc8d01b8fd222c647a77b0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tapi_storage_client_ftp_init(:ref:`rcf_rpc_server`* rpcs, const :ref:`tapi_storage_client_methods`* methods, :ref:`tapi_storage_auth_params`* auth, tapi_storage_client_ftp_context* context, :ref:`tapi_storage_client`* client) Initialize FTP client handle. Client should be released with ``tapi_storage_client_ftp_fini`` when it is no longer needed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - rpcs - RPC server handle. * - methods - Back-end client scpecific methods. If ``NULL`` then default methods will be used. Default methods is defined in tapi_storage_client_ftp.c. * - auth - Back-end client specific authorization parameters. May be ``NULL``. * - context - Back-end client scpecific context. Don't free the ``context`` before finishing work with ``client``. * - client - FTP client handle. .. rubric:: Returns: Status code. .. rubric:: See also: :ref:`tapi_storage_client_ftp_fini ` .. index:: pair: function; tapi_storage_client_ftp_fini .. _doxid-group__tapi__storage__client__ftp_1ga1e1f0d650559b0452add6c097a92344e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tapi_storage_client_ftp_fini(:ref:`tapi_storage_client`* client) Release FTP client that was initialized with ``tapi_storage_client_ftp_init``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - client - FTP client handle. .. rubric:: See also: :ref:`tapi_storage_client_ftp_init `