Difference between revisions of "Unit FTP"

From Ultibo.org
Jump to: navigation, search
Line 74: Line 74:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-
Line 89: Line 89:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-
Line 101: Line 101:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-
Line 113: Line 113:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-
Line 125: Line 125:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-
Line 137: Line 137:
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
{| class="wikitable" style="font-size: 14px; background: white;"
 
|-
 
|-
! '''Note'''
+
! Note
 
| None documented
 
| None documented
 
|-
 
|-

Revision as of 00:58, 24 April 2018

Return to Unit Reference


Description


Ultibo FTP interface unit

To be documented

Constants



FTP logging FTP_LOG_*
FTP_LOG_LEVEL_DEBUG = LOG_LEVEL_DEBUG; FTP debugging messages
FTP_LOG_LEVEL_INFO = LOG_LEVEL_INFO; FTP informational messages
FTP_LOG_LEVEL_WARN = LOG_LEVEL_WARN; FTP warning messages
FTP_LOG_LEVEL_ERROR = LOG_LEVEL_ERROR; FTP error messages
FTP_LOG_LEVEL_NONE = LOG_LEVEL_NONE; No FTP messages


Type definitions


None defined

Public variables



FTP logging

FTP_DEFAULT_LOG_LEVEL:LongWord = FTP_LOG_LEVEL_DEBUG; Minimum level for FTP messages. Only messages with level greater than or equal to this will be printed.
FTP_LOG_ENABLED:Boolean;


Function declarations



Initialization functions

procedure FTPInit;
Description: To be documented
Note None documented


FTP helper functions

procedure FTPLog(Level:LongWord; const AText:String);
Description: To be documented
Note None documented


procedure FTPLogInfo(const AText:String); inline;
Description: To be documented
Note None documented


procedure FTPLogWarn(const AText:String); inline;
Description: To be documented
Note None documented


procedure FTPLogError(const AText:String); inline;
Description: To be documented
Note None documented


procedure FTPLogDebug(const AText:String); inline;
Description: To be documented
Note None documented


Return to Unit Reference