Updated documentation
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1239 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
49ebb40c4d
commit
1f3d7b6d0c
52 changed files with 2077 additions and 2021 deletions
|
@ -136,8 +136,8 @@ public :
|
|||
////////////////////////////////////////////////////////////
|
||||
/// Default constructor
|
||||
///
|
||||
/// \param code : Response status code (InvalidResponse by default)
|
||||
/// \param message : Response message (empty by default)
|
||||
/// \param code : Response status code
|
||||
/// \param message : Response message
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
Response(Status code = InvalidResponse, const std::string& message = "");
|
||||
|
@ -387,7 +387,7 @@ public :
|
|||
///
|
||||
/// \param distantFile : Path of the distant file to download
|
||||
/// \param destPath : Where to put to file on the local computer
|
||||
/// \param mode : Transfer mode (binary by default)
|
||||
/// \param mode : Transfer mode
|
||||
///
|
||||
/// \return Server response to the request
|
||||
///
|
||||
|
@ -399,7 +399,7 @@ public :
|
|||
///
|
||||
/// \param localFile : Path of the local file to upload
|
||||
/// \param destPath : Where to put to file on the server
|
||||
/// \param mode : Transfer mode (binary by default)
|
||||
/// \param mode : Transfer mode
|
||||
///
|
||||
/// \return Server response to the request
|
||||
///
|
||||
|
@ -412,7 +412,7 @@ private :
|
|||
/// Send a command to the FTP server
|
||||
///
|
||||
/// \param command : Command to send
|
||||
/// \param parameter : Command parameter ("" by default)
|
||||
/// \param parameter : Command parameter
|
||||
///
|
||||
/// \return Server response to the request
|
||||
///
|
||||
|
|
|
@ -68,9 +68,9 @@ public :
|
|||
////////////////////////////////////////////////////////////
|
||||
/// Default constructor
|
||||
///
|
||||
/// \param method : Method to use for the request (Get by default)
|
||||
/// \param URI : Target URI ("/" by default -- index page)
|
||||
/// \param body : Content of the request's body (empty by default)
|
||||
/// \param method : Method to use for the request
|
||||
/// \param URI : Target URI
|
||||
/// \param body : Content of the request's body
|
||||
///
|
||||
////////////////////////////////////////////////////////////
|
||||
Request(Method method = Get, const std::string& URI = "/", const std::string& body = "");
|
||||
|
|
|
@ -88,7 +88,7 @@ public :
|
|||
/// This function will block if the socket is blocking
|
||||
///
|
||||
/// \param connected : Socket containing the connection with the connected client
|
||||
/// \param address : Pointer to an address to fill with client infos (NULL by default)
|
||||
/// \param address : Pointer to an address to fill with client infos
|
||||
///
|
||||
/// \return Status code
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue