Searched refs:FTP (Results 1 – 25 of 418) sorted by relevance
12345678910>>...17
/third_party/python/Doc/library/ |
D | ftplib.rst | 1 :mod:`ftplib` --- FTP protocol client 5 :synopsis: FTP protocol client (requires sockets). 10 pair: FTP; protocol 11 single: FTP; ftplib (standard module) 15 This module defines the class :class:`FTP` and a few related items. The 16 :class:`FTP` class implements the client side of the FTP protocol. You can use 17 this to write Python programs that perform a variety of automated FTP jobs, such 18 as mirroring other FTP servers. It is also used by the module 19 :mod:`urllib.request` to handle URLs that use FTP. For more information on FTP 26 >>> from ftplib import FTP [all …]
|
/third_party/curl/tests/data/ |
D | test2045 | 4 FTP 15 properly. We specify a default protocol of FTP and if the option works properly 16 curl will use the FTP protocol. If the option is broken however curl will use 18 In the broken scenario curl would use HTTP to talk to our FTP server. We handle 19 that by replying with something that both protocols can understand. Our FTP 21 reply that contains an FTP reply (think polyglot). In the case of FTP we expect 25 REPLY welcome HTTP/1.1 200 OK\r\nContent-Length: 21\r\n\r\n500 Weird FTP Reply
|
D | test1316 | 4 FTP 18 Magic: sure you can FTP me 23 # FTP server 26 Magic: sure you can FTP me 29 Magic: sure you can FTP me 49 # please send the real CONNECT connect off to the FTP server's port 61 FTP LIST tunneled through HTTP proxy
|
D | test1569 | 4 FTP 15 that FTP 30 FTP first type=A then regular URL 62 that FTP 68 that FTP
|
D | test1570 | 4 FTP 15 that FTP 30 FTP first type=D then regular URL 62 that FTP 68 that FTP
|
D | test1538 | 45 e10: FTP: The server failed to connect to data port 46 e11: FTP: unknown PASS reply 47 e12: FTP: Accepting server connect has timed out 48 e13: FTP: unknown PASV reply 49 e14: FTP: unknown 227 response format 50 e15: FTP: can't figure out the host in the PASV response 52 e17: FTP: couldn't set file type 54 e19: FTP: couldn't retrieve (RETR failed) the specified file 65 e30: FTP: command PORT failed 66 e31: FTP: command REST failed [all …]
|
D | test107 | 4 FTP 16 FTP PASV upload file 22 that FTP 37 that FTP
|
D | test362 | 4 FTP 16 FTP resume upload file with nothing to start from 22 that FTP 36 that FTP
|
D | test248 | 4 FTP 20 FTP upload time condition evaluates FALSE => upload anyway 26 that FTP 41 that FTP
|
D | test348 | 4 FTP 22 FTP upload file with 552 disk full response 28 that FTP 43 that FTP
|
D | test2000 | 4 FTP 18 that FTP 32 FTP RETR followed by FILE 63 that FTP
|
D | test546 | 4 FTP 16 that FTP 38 FTP RETR a non-existing file then a found one using the multi interface 65 that FTP
|
D | test252 | 4 FTP 5 FTP-ipv6 14 # FTP server 40 FTP IPv6 dir list PASV
|
D | test564 | 6 FTP 19 that FTP 36 FTP RETR a file over a SOCKS proxy using the multi interface 63 that FTP
|
D | test253 | 4 FTP 5 FTP-ipv6 14 # FTP server 40 FTP IPv6 dir list with EPRT
|
D | test254 | 4 FTP 5 FTP-ipv6 15 # FTP server 41 FTP IPv6 dir list PASV and --disable-epsv
|
D | test255 | 4 FTP 5 FTP-ipv6 15 # FTP server 41 FTP IPv6 dir list with EPRT and --disable-eprt
|
D | test973 | 5 FTP 27 that FTP 44 that FTP 59 HTTP with auth redirected to FTP w/o auth
|
D | test1028 | 7 FTP 31 that FTP 45 HTTP Location: redirect to FTP URL 83 that FTP
|
D | test975 | 5 FTP 27 that FTP 44 that FTP 59 HTTP with auth redirected to FTP allowing auth to continue
|
D | test1048 | 4 FTP 5 FTP-ipv6 18 # FTP server 44 FTP-IPv6 dir list PASV with localhost --interface
|
/third_party/curl/docs/cmdline-opts/ |
D | list-only.d | 3 Protocols: FTP POP3 8 (FTP) 9 When listing an FTP directory, this switch forces a name-only view. This is 10 especially useful if the user wants to machine-parse the contents of an FTP
|
D | page-footer | 19 protocol that curl supports and as specified in a URL. FTP, FTPS, POP3, IMAP, 106 FTP access denied. The server denied login or denied access to the particular 110 FTP accept failed. While waiting for the server to connect back when an active 111 FTP session is used, an error code was sent over the control connection or 114 FTP weird PASS reply. Curl couldn't parse the reply sent to the PASS request. 116 During an active FTP session while waiting for the server to connect back to 119 FTP weird PASV reply, Curl couldn't parse the reply sent to the PASV request. 121 FTP weird 227 format. Curl couldn't parse the 227-line the server sent. 123 FTP can't get host. Couldn't resolve the host IP we got in the 227-line. 129 FTP couldn't set binary. Couldn't change transfer method to binary. [all …]
|
D | ftp-ssl-control.d | 2 Help: Require SSL/TLS for FTP login, clear for transfer 3 Protocols: FTP 7 Require SSL/TLS for the FTP login, clear for transfer. Allows secure
|
/third_party/curl/packages/vms/ |
D | curlmsg.msg | 55 FTP_ACCESS_DENIED <FTP access denied> 57 FTP_WEIRD_PASS_REPLY <FTP weird PASS reply> 59 FTP_WEIRD_PASV_REPLY <FTP weird PASV reply> 60 FTP_WEIRD_227_FORMAT <FTP weird 227 format> 61 FTP_CANT_GET_HOST <FTP can not get host> 63 FTP_COULDNT_SET_TYPE <FTP could not set type> 65 FTP_COULDNT_RETR_FILE <FTP could not RETR file> 76 FTP_PORT_FAILED <FTP PORT operation failed> 77 FTP_COULDNT_USE_REST <FTP REST command failed> 110 USE_SSL_FAILED <requested FTP SSL level failed>
|
12345678910>>...17