Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Unable to render {include} The included page could not be found.
Unable to render {include} The included page could not be found.

TFTPs_Init()

Initialize the TFTP server.

Files

tftp-s.h/tftp-s.c

Prototype

CPU_BOOLEAN TFTPs_Init(void);

Arguments

None.

Returned Values

DEF_OK, if no error;

DEF_FAIL, otherwise.

Required Configuration

None.

Notes / Warnings

None.

Example Usage

CPU_BOOLEAN success;

/* TFTP server NOT initialized or started. */

success = TFTPs_Init();

if (success != DEF_OK) {

printf(“TFTP server initialization failed”);

}

  • No labels