⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changes

📁 功能最强大的网络爬虫,希望大家好好学习啊,好好研究啊
💻
字号:
                                  _   _ ____  _                              ___| | | |  _ \| |                             / __| | | | |_) | |                            | (__| |_| |  _ <| |___                             \___|\___/|_| \_\_____|                                  ChangelogVersion 7.15.5 (7 August 2006)Daniel (2 August 2006)- Mark Lentczner fixed how libcurl was not properly doing chunked encoding  if the header "Transfer-Encoding: chunked" was set by the application.  http://curl.haxx.se/bug/view.cgi?id=1531838Daniel (1 August 2006)- Maciej Karpiuk fixed a crash that would occur if we passed Curl_strerror()  an unknown error number on glibc systems.  http://curl.haxx.se/bug/view.cgi?id=1532289Daniel (31 July 2006)- *ALERT* curl_multi_socket() and curl_multi_socket_all() got modified  prototypes: they both now provide the number of running handles back to the  calling function. It makes the functions resemble the good old  curl_multi_perform() more and provides a nice way to know when the multi  handle goes empty.  ALERT2: don't use the curl_multi_socket*() functionality in anything  production-like until I say it's somewhat settled, as I suspect there might  be some further API changes before I'm done...Daniel (28 July 2006)- Yves Lejeune fixed so that replacing Content-Type: when doing multipart  formposts work exactly the way you want it (and the way you'd assume it  works).Daniel (27 July 2006)- David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for both  control and data connection, as the existing --ftp-ssl option only requests  it.- [Hiper-related work] Added a function called curl_multi_assign() that will  set a private pointer added to the internal libcurl hash table for the  particular socket passed in to this function:  CURLMcode curl_multi_assign(CURLM *multi_handle,                              curl_socket_t sockfd,                              void *sockp);  'sockp' being a custom pointer set by the application to be associated with  this socket. The socket has to be already existing and in-use by libcurl,  like having already called the callback telling about its existance.  The set hashp pointer will then be passed on to the callback in upcoming  calls when this same socket is used (in the brand new 'socketp' argument).Daniel (26 July 2006)- Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curl  tool option named --ftp-alternative-to-user. It provides a mean to send a  particular command if the normal USER/PASS approach fails.- Michael Jerris added magic that builds lib/curllib.vcproj automatically for  newer MSVC.Daniel (25 July 2006)- Georg Horn made the transfer timeout error message include more details.Daniel (20 July 2006)- David McCreedy fixed a build error when building libcurl with HTTP disabled,  problem added with the curl_formget() patch.Daniel (17 July 2006)- Jari Sundell did some excellent research and bug tracking, figured out that  we did wrong and patched it: When nodes were removed from the splay tree,  and we didn't properly remove it from the splay tree when an easy handle was  removed from a multi stack and thus we could wrongly leave a node in the  splay tree pointing to (bad) memory.Daniel (14 July 2006)- David McCreedy fixed a flaw where the CRLF counter wasn't properly cleared  for FTP ASCII transfers.Daniel (8 July 2006)- Ates Goral pointed out that libcurl's cookie parser did case insensitive  string comparisons on the path which is incorrect and provided a patch that  fixes this. I edited test case 8 to include details that test for this.- Ingmar Runge provided a source snippet that caused a crash. The reason for  the crash was that libcurl internally was a bit confused about who owned the  DNS cache at all times so if you created an easy handle that uses a shared  DNS cache and added that to a multi handle it would crash. Now we keep more  careful internal track of exactly what kind of DNS cache each easy handle  uses: None, Private (allocated for and used only by this single handle),  Shared (points to a cache held by a shared object), Global (points to the  global cache) or Multi (points to the cache within the multi handle that is  automatically shared between all easy handles that are added with private  caches).Daniel (4 July 2006)- Toshiyuki Maezawa fixed a problem where you couldn't override the  Proxy-Connection: header when using a proxy and not doing CONNECT.  Daniel (24 June 2006)- Michael Wallner added curl_formget(), which allows an application to extract  (serialise) a previously built formpost (as with curl_formadd()).Daniel (23 June 2006)- Arve Knudsen found a flaw in curl_multi_fdset() for systems where  curl_socket_t is unsigned (like Windows) that could cause it to wrongly  return a max fd of -1.Daniel (20 June 2006)- Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE and  CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed  to send or receive data. This kind of adds the the command line tool's  option --limit-rate to the library.  The rate limiting logic in the curl app is now removed and is instead  provided by libcurl itself. Transfer rate limiting will now also work for -d  and -F, which it didn't before.Daniel (19 June 2006)- Made -K on a file that couldn't be read cause a warning to be displayed.Daniel (13 June 2006)- Dan Fandrich implemented --enable-hidden-symbols configure option to enable  -fvisibility=hidden on gcc >= 4.0.  This reduces the size of the libcurl  binary and speeds up dynamic linking by hiding all the internal symbols from  the symbol table.Version 7.15.4 (12 June 2006)Daniel (8 June 2006)- Brian Dessent fixed the code for cygwin in three distinct ways:  The first modifies {lib,src}/setup.h to not include the winsock headers  under Cygwin.  This fixes the reported build problem.  Cygwin attempts as  much as possible to emulate a posix environment under Windows.  This means  that WIN32 is *not* #defined and (to the extent possible) everything is done  as it would be on a *ix type system.  Thus <sys/socket.h> is the proper  include, and even though winsock2.h is present, including it just introduces  a whole bunch of incompatible socket API stuff.  The second is a patch I've included in the Cygwin binary packages for a  while.  It skips two unnecessary library checks (-lwinmm and -lgdi32).  The  checks are innocuous and they do succeed, but they pollute LIBS with  unnecessary stuff which gets recorded as such in the libcurl.la file, which  brings them into the build of any libcurl-downstream.  As far as I know  these libs are really only necessary for mingw, so alternatively they could  be designed to only run if $host matches *-*-mingw* but I took the safer  route of skipping them for *-*-cygwin*.  The third patch replaces all uses of the ancient and obsolete __CYGWIN32__  with __CYGWIN__. Ref: <http://cygwin.com/ml/cygwin/2003-09/msg01520.html>.Daniel (7 June 2006)- Mikael Sennerholm provided a patch that added NTLM2 session response support  to libcurl. The 21 NTLM test cases were again modified to comply...Daniel (27 May 2006)- 觭car Morales Viv

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -