Lines Matching +defs:val +defs:file
134 SOCKET controlFd; /* the file descriptor for the control socket */
135 SOCKET dataFd; /* the file descriptor for the data socket */
534 int val = 0;
538 val = val * 10 + (*buf - '0');
543 val = val * 10 + (*buf - '0');
548 val = val * 10 + (*buf - '0');
553 return(-val);
554 return(val);
1308 * @file: a file or directory on the server
1310 * Tries to delete an item (file or directory) from server
1316 xmlNanoFTPDele(void *ctx, const char *file) {
1322 if ((ctxt == NULL) || (ctxt->controlFd < 0) || (file == NULL)) return(-1);
1323 if (file == NULL) return (0);
1334 snprintf(buf, sizeof(buf), "DELE %s\r\n", file);
1819 * @filename: the file to retrieve (or NULL if path is in context).
1821 * Initiate fetch of the given file from the server.
1884 * @filename: the file to retrieve
1886 * Fetch the given file from the server. All data are passed back
2092 "Failed to get file\n");