#include <SFML/Network/Export.h>
#include <SFML/Network/IpAddress.h>
#include <SFML/Network/Types.h>
#include <stddef.h>
Go to the source code of this file.
Functions | |
CSFML_NETWORK_API void | sfFtpListingResponse_destroy (sfFtpListingResponse *ftpListingResponse) |
Destroy a FTP listing response. | |
CSFML_NETWORK_API sfBool | sfFtpListingResponse_isOk (const sfFtpListingResponse *ftpListingResponse) |
Check if a FTP listing response status code means a success. | |
CSFML_NETWORK_API sfFtpStatus | sfFtpListingResponse_getStatus (const sfFtpListingResponse *ftpListingResponse) |
Get the status code of a FTP listing response. | |
CSFML_NETWORK_API const char * | sfFtpListingResponse_getMessage (const sfFtpListingResponse *ftpListingResponse) |
Get the full message contained in a FTP listing response. | |
CSFML_NETWORK_API size_t | sfFtpListingResponse_getCount (const sfFtpListingResponse *ftpListingResponse) |
Return the number of directory/file names contained in a FTP listing response. | |
CSFML_NETWORK_API const char * | sfFtpListingResponse_getName (const sfFtpListingResponse *ftpListingResponse, size_t index) |
Return a directory/file name contained in a FTP listing response. | |
CSFML_NETWORK_API void | sfFtpDirectoryResponse_destroy (sfFtpDirectoryResponse *ftpDirectoryResponse) |
Destroy a FTP directory response. | |
CSFML_NETWORK_API sfBool | sfFtpDirectoryResponse_isOk (const sfFtpDirectoryResponse *ftpDirectoryResponse) |
Check if a FTP directory response status code means a success. | |
CSFML_NETWORK_API sfFtpStatus | sfFtpDirectoryResponse_getStatus (const sfFtpDirectoryResponse *ftpDirectoryResponse) |
Get the status code of a FTP directory response. | |
CSFML_NETWORK_API const char * | sfFtpDirectoryResponse_getMessage (const sfFtpDirectoryResponse *ftpDirectoryResponse) |
Get the full message contained in a FTP directory response. | |
CSFML_NETWORK_API const char * | sfFtpDirectoryResponse_getDirectory (const sfFtpDirectoryResponse *ftpDirectoryResponse) |
Get the directory returned in a FTP directory response. | |
CSFML_NETWORK_API void | sfFtpResponse_destroy (sfFtpResponse *ftpResponse) |
Destroy a FTP response. | |
CSFML_NETWORK_API sfBool | sfFtpResponse_isOk (const sfFtpResponse *ftpResponse) |
Check if a FTP response status code means a success. | |
CSFML_NETWORK_API sfFtpStatus | sfFtpResponse_getStatus (const sfFtpResponse *ftpResponse) |
Get the status code of a FTP response. | |
CSFML_NETWORK_API const char * | sfFtpResponse_getMessage (const sfFtpResponse *ftpResponse) |
Get the full message contained in a FTP response. | |
CSFML_NETWORK_API sfFtp * | sfFtp_create (void) |
Create a new Ftp object. | |
CSFML_NETWORK_API void | sfFtp_destroy (sfFtp *ftp) |
Destroy a Ftp object. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_connect (sfFtp *ftp, sfIpAddress server, unsigned short port, sfTime timeout) |
Connect to the specified FTP server. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_loginAnonymous (sfFtp *ftp) |
Log in using an anonymous account. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_login (sfFtp *ftp, const char *userName, const char *password) |
Log in using a username and a password. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_disconnect (sfFtp *ftp) |
Close the connection with the server. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_keepAlive (sfFtp *ftp) |
Send a null command to keep the connection alive. | |
CSFML_NETWORK_API sfFtpDirectoryResponse * | sfFtp_getWorkingDirectory (sfFtp *ftp) |
Get the current working directory. | |
CSFML_NETWORK_API sfFtpListingResponse * | sfFtp_getDirectoryListing (sfFtp *ftp, const char *directory) |
Get the contents of the given directory. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_changeDirectory (sfFtp *ftp, const char *directory) |
Change the current working directory. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_parentDirectory (sfFtp *ftp) |
Go to the parent directory of the current one. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_createDirectory (sfFtp *ftp, const char *name) |
Create a new directory. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_deleteDirectory (sfFtp *ftp, const char *name) |
Remove an existing directory. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_renameFile (sfFtp *ftp, const char *file, const char *newName) |
Rename an existing file. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_deleteFile (sfFtp *ftp, const char *name) |
Remove an existing file. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_download (sfFtp *ftp, const char *distantFile, const char *destPath, sfFtpTransferMode mode) |
Download a file from a FTP server. | |
CSFML_NETWORK_API sfFtpResponse * | sfFtp_upload (sfFtp *ftp, const char *localFile, const char *destPath, sfFtpTransferMode mode) |
Upload a file to a FTP server. | |
enum sfFtpStatus |
Status codes possibly returned by a FTP response.
enum sfFtpTransferMode |
CSFML_NETWORK_API sfFtpResponse* sfFtp_changeDirectory | ( | sfFtp * | ftp, |
const char * | directory | ||
) |
Change the current working directory.
The new directory must be relative to the current one.
ftp | Ftp object |
directory | New working directory |
CSFML_NETWORK_API sfFtpResponse* sfFtp_connect | ( | sfFtp * | ftp, |
sfIpAddress | server, | ||
unsigned short | port, | ||
sfTime | timeout | ||
) |
Connect to the specified FTP server.
The port should be 21, which is the standard port used by the FTP protocol. You shouldn't use a different value, unless you really know what you do. This function tries to connect to the server so it may take a while to complete, especially if the server is not reachable. To avoid blocking your application for too long, you can use a timeout. Using 0 means that the system timeout will be used (which is usually pretty long).
ftp | Ftp object |
server | Name or address of the FTP server to connect to |
port | Port used for the connection |
timeout | Maximum time to wait |
CSFML_NETWORK_API sfFtp* sfFtp_create | ( | void | ) |
Create a new Ftp object.
CSFML_NETWORK_API sfFtpResponse* sfFtp_createDirectory | ( | sfFtp * | ftp, |
const char * | name | ||
) |
Create a new directory.
The new directory is created as a child of the current working directory.
ftp | Ftp object |
name | Name of the directory to create |
CSFML_NETWORK_API sfFtpResponse* sfFtp_deleteDirectory | ( | sfFtp * | ftp, |
const char * | name | ||
) |
Remove an existing directory.
The directory to remove must be relative to the current working directory. Use this function with caution, the directory will be removed permanently!
ftp | Ftp object |
name | Name of the directory to remove |
CSFML_NETWORK_API sfFtpResponse* sfFtp_deleteFile | ( | sfFtp * | ftp, |
const char * | name | ||
) |
Remove an existing file.
The file name must be relative to the current working directory. Use this function with caution, the file will be removed permanently!
ftp | Ftp object |
name | File to remove |
CSFML_NETWORK_API void sfFtp_destroy | ( | sfFtp * | ftp | ) |
Destroy a Ftp object.
ftp | Ftp object to destroy |
CSFML_NETWORK_API sfFtpResponse* sfFtp_disconnect | ( | sfFtp * | ftp | ) |
Close the connection with the server.
ftp | Ftp object |
CSFML_NETWORK_API sfFtpResponse* sfFtp_download | ( | sfFtp * | ftp, |
const char * | distantFile, | ||
const char * | destPath, | ||
sfFtpTransferMode | mode | ||
) |
Download a file from a FTP server.
The filename of the distant file is relative to the current working directory of the server, and the local destination path is relative to the current directory of your application.
ftp | Ftp object |
remoteFile | Filename of the distant file to download |
localPath | Where to put to file on the local computer |
mode | Transfer mode |
CSFML_NETWORK_API sfFtpListingResponse* sfFtp_getDirectoryListing | ( | sfFtp * | ftp, |
const char * | directory | ||
) |
Get the contents of the given directory.
This function retrieves the sub-directories and files contained in the given directory. It is not recursive. The directory parameter is relative to the current working directory.
ftp | Ftp object |
directory | Directory to list |
CSFML_NETWORK_API sfFtpDirectoryResponse* sfFtp_getWorkingDirectory | ( | sfFtp * | ftp | ) |
Get the current working directory.
The working directory is the root path for subsequent operations involving directories and/or filenames.
ftp | Ftp object |
CSFML_NETWORK_API sfFtpResponse* sfFtp_keepAlive | ( | sfFtp * | ftp | ) |
Send a null command to keep the connection alive.
This command is useful because the server may close the connection automatically if no command is sent.
ftp | Ftp object |
CSFML_NETWORK_API sfFtpResponse* sfFtp_login | ( | sfFtp * | ftp, |
const char * | userName, | ||
const char * | password | ||
) |
Log in using a username and a password.
Logging in is mandatory after connecting to the server. Users that are not logged in cannot perform any operation.
ftp | Ftp object |
name | User name |
password | Password |
CSFML_NETWORK_API sfFtpResponse* sfFtp_loginAnonymous | ( | sfFtp * | ftp | ) |
Log in using an anonymous account.
Logging in is mandatory after connecting to the server. Users that are not logged in cannot perform any operation.
ftp | Ftp object |
CSFML_NETWORK_API sfFtpResponse* sfFtp_parentDirectory | ( | sfFtp * | ftp | ) |
Go to the parent directory of the current one.
ftp | Ftp object |
CSFML_NETWORK_API sfFtpResponse* sfFtp_renameFile | ( | sfFtp * | ftp, |
const char * | file, | ||
const char * | newName | ||
) |
Rename an existing file.
The filenames must be relative to the current working directory.
ftp | Ftp object |
file | File to rename |
newName | New name of the file |
CSFML_NETWORK_API sfFtpResponse* sfFtp_upload | ( | sfFtp * | ftp, |
const char * | localFile, | ||
const char * | destPath, | ||
sfFtpTransferMode | mode | ||
) |
Upload a file to a FTP server.
The name of the local file is relative to the current working directory of your application, and the remote path is relative to the current directory of the FTP server.
ftp | Ftp object |
localFile | Path of the local file to upload |
remotePath | Where to put to file on the server |
mode | Transfer mode |
CSFML_NETWORK_API void sfFtpDirectoryResponse_destroy | ( | sfFtpDirectoryResponse * | ftpDirectoryResponse | ) |
Destroy a FTP directory response.
ftpDirectoryResponse | Ftp directory response to destroy |
CSFML_NETWORK_API const char* sfFtpDirectoryResponse_getDirectory | ( | const sfFtpDirectoryResponse * | ftpDirectoryResponse | ) |
Get the directory returned in a FTP directory response.
ftpDirectoryResponse | Ftp directory response |
CSFML_NETWORK_API const char* sfFtpDirectoryResponse_getMessage | ( | const sfFtpDirectoryResponse * | ftpDirectoryResponse | ) |
Get the full message contained in a FTP directory response.
ftpDirectoryResponse | Ftp directory response |
CSFML_NETWORK_API sfFtpStatus sfFtpDirectoryResponse_getStatus | ( | const sfFtpDirectoryResponse * | ftpDirectoryResponse | ) |
Get the status code of a FTP directory response.
ftpDirectoryResponse | Ftp directory response |
CSFML_NETWORK_API sfBool sfFtpDirectoryResponse_isOk | ( | const sfFtpDirectoryResponse * | ftpDirectoryResponse | ) |
Check if a FTP directory response status code means a success.
This function is defined for convenience, it is equivalent to testing if the status code is < 400.
ftpDirectoryResponse | Ftp directory response |
CSFML_NETWORK_API void sfFtpListingResponse_destroy | ( | sfFtpListingResponse * | ftpListingResponse | ) |
Destroy a FTP listing response.
ftpListingResponse | Ftp listing response to destroy |
CSFML_NETWORK_API size_t sfFtpListingResponse_getCount | ( | const sfFtpListingResponse * | ftpListingResponse | ) |
Return the number of directory/file names contained in a FTP listing response.
ftpListingResponse | Ftp listing response |
CSFML_NETWORK_API const char* sfFtpListingResponse_getMessage | ( | const sfFtpListingResponse * | ftpListingResponse | ) |
Get the full message contained in a FTP listing response.
ftpListingResponse | Ftp listing response |
CSFML_NETWORK_API const char* sfFtpListingResponse_getName | ( | const sfFtpListingResponse * | ftpListingResponse, |
size_t | index | ||
) |
Return a directory/file name contained in a FTP listing response.
ftpListingResponse | Ftp listing response |
index | Index of the name to get (in range [0 .. getCount]) |
CSFML_NETWORK_API sfFtpStatus sfFtpListingResponse_getStatus | ( | const sfFtpListingResponse * | ftpListingResponse | ) |
Get the status code of a FTP listing response.
ftpListingResponse | Ftp listing response |
CSFML_NETWORK_API sfBool sfFtpListingResponse_isOk | ( | const sfFtpListingResponse * | ftpListingResponse | ) |
Check if a FTP listing response status code means a success.
This function is defined for convenience, it is equivalent to testing if the status code is < 400.
ftpListingResponse | Ftp listing response |
CSFML_NETWORK_API void sfFtpResponse_destroy | ( | sfFtpResponse * | ftpResponse | ) |
Destroy a FTP response.
ftpResponse | Ftp response to destroy |
CSFML_NETWORK_API const char* sfFtpResponse_getMessage | ( | const sfFtpResponse * | ftpResponse | ) |
Get the full message contained in a FTP response.
ftpResponse | Ftp response object |
CSFML_NETWORK_API sfFtpStatus sfFtpResponse_getStatus | ( | const sfFtpResponse * | ftpResponse | ) |
Get the status code of a FTP response.
ftpResponse | Ftp response object |
CSFML_NETWORK_API sfBool sfFtpResponse_isOk | ( | const sfFtpResponse * | ftpResponse | ) |
Check if a FTP response status code means a success.
This function is defined for convenience, it is equivalent to testing if the status code is < 400.
ftpResponse | Ftp response object |