Changeset 82824 in vbox for trunk/src/VBox/Runtime/generic
- Timestamp:
- Jan 22, 2020 11:56:53 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135793
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/ftp-server.cpp
r82823 r82824 879 879 * @returns VBox status code. 880 880 * @param pDataConn Data connection to write to. 881 * @param enmReply Reply code to send. 882 * @param pcszFormat Format string of message to send with the reply code. 881 * @param pcszFormat Format string to send. No (terminal) termination added. 883 882 */ 884 883 static int rtFtpServerDataConnPrintf(PRTFTPSERVERDATACONN pDataConn, const char *pcszFormat, ...) … … 1269 1268 * @returns pszDst 1270 1269 * @param gid The GID to format. 1271 * @param psz Owner The ownerreturned by the FS.1270 * @param pszGroup The group returned by the FS. 1272 1271 * @param pszDst The output buffer. 1273 1272 * @param cbDst The output buffer size. … … 1450 1449 } 1451 1450 1451 /** 1452 * Writes a directory collection to a specific data connection. 1453 * 1454 * @returns VBox status code. 1455 * @param pDataConn Data connection to write directory collection to. 1456 * @param pCollection Collection to write. 1457 * @param pszTmp Temporary buffer used for writing. 1458 * @param cbTmp Size (in bytes) of temporary buffer used for writing. 1459 */ 1452 1460 static int rtFtpServerDataConnDirCollWrite(PRTFTPSERVERDATACONN pDataConn, PRTFTPDIRCOLLECTION pCollection, 1453 1461 char *pszTmp, size_t cbTmp)
Note:
See TracChangeset
for help on using the changeset viewer.