Difference between revisions of "TFtpServer"
Jump to navigation
Jump to search
| Line 8: | Line 8: | ||
== Properties == | == Properties == | ||
| + | |||
| + | {| | ||
| + | | valign="top" width="150" | [[TFtpServer.Addr | Addr]] |||| IP address of the interface to listen on. Use 0.0.0.0 to listen on all interfaces. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.Port | Port]] |||| TCP port to listen to. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.Banner | Banner]] |||| Welcome message sent to client. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.UserData | UserData]] |||| Data passed to each client instance. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.MaxClient | MaxClient]] |||| Maximum number of simultaneous client to be accepted. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.PasvIpAddr | PasvIpAddr]] |||| IP address used for passive mode. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.PasvPortRangeStart | PasvPortRangeStart]] |||| TCP port range start to be used for passive mode. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.PasvPortRangeSize | PasvPortRangeSize ]] |||| TCP port range size to be used for passive mode. | ||
| + | |- | ||
| + | | valign="top" | [[TFtpServer.Options | Options]] |||| Options set to change component behaviour. | ||
| + | |} | ||
== Methods == | == Methods == | ||
Revision as of 16:38, 3 December 2006
Main page -> ICS components reference -> TFtpServer
Contents
Overview
- unit FtpSrv.pas
- inheritance TFtpServer - TComponent
TFtpServer component is implementing the server side FTP protocol described in RFC 959. FTP protocol is the standard protocol for transfering files.
Properties
| Addr | IP address of the interface to listen on. Use 0.0.0.0 to listen on all interfaces. | |
| Port | TCP port to listen to. | |
| Banner | Welcome message sent to client. | |
| UserData | Data passed to each client instance. | |
| MaxClient | Maximum number of simultaneous client to be accepted. | |
| PasvIpAddr | IP address used for passive mode. | |
| PasvPortRangeStart | TCP port range start to be used for passive mode. | |
| PasvPortRangeSize | TCP port range size to be used for passive mode. | |
| Options | Options set to change component behaviour. |