diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-31 00:20:22 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-31 00:20:22 +0200 |
commit | 9a0a16a61c3adf56bdf80a774677b311ef27d376 (patch) | |
tree | aaf035b03c23e8c6203d2dc968d886cc73aaebe2 | |
parent | 2f1eae0f272d0f8fbe6ea4a68a8cc75ba6948b1a (diff) | |
download | curl-9a0a16a61c3adf56bdf80a774677b311ef27d376.tar.gz |
README.pingpong: removed
-rw-r--r-- | lib/Makefile.am | 3 | ||||
-rw-r--r-- | lib/README.pingpong | 30 |
2 files changed, 1 insertions, 32 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index fd2ca585d..1bef388df 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -22,8 +22,7 @@ AUTOMAKE_OPTIONS = foreign nostdinc DOCS = README.encoding README.memoryleak README.ares README.curlx \ - README.hostip README.multi_socket README.httpauth README.curl_off_t \ - README.pingpong + README.hostip README.multi_socket README.httpauth README.curl_off_t CMAKE_DIST = CMakeLists.txt curl_config.h.cmake diff --git a/lib/README.pingpong b/lib/README.pingpong deleted file mode 100644 index 69ba9aadb..000000000 --- a/lib/README.pingpong +++ /dev/null @@ -1,30 +0,0 @@ -Date: December 5, 2009 - -Pingpong -======== - - Pingpong is just my (Daniel's) jestful collective name on the protocols that - share a very similar kind of back-and-forth procedure with command and - responses to and from the server. FTP was previously the only protocol in - that family that libcurl supported, but when POP3, IMAP and SMTP joined the - team I moved some of the internals into a separate pingpong module to be - easier to get used by all these protocols to reduce code duplication and ease - code re-use between these protocols. - -FTP - - In 7.20.0 we converted code to use the new pingpong code from previously - having been all "native" FTP code. - -POP3 - - There's no support in the documented URL format to specify the exact mail to - get, but we support that as the path specified in the URL. - -IMAP - -SMTP - - There's no official URL syntax defined for SMTP, but we use only the generic - one and we provide two additional libcurl options to specify receivers and - sender of the actual mail. |