29676f47 | 10-Nov-2005 |
Daniel Stenberg |
David Lang: if there is no sockaddr_storage, make up our own and use that |
a5fcb26a | 10-Nov-2005 |
Daniel Stenberg |
modified to the new error text for range error |
d68b1a1e | 10-Nov-2005 |
Daniel Stenberg |
just implemented |
bd8baed1 | 10-Nov-2005 |
Daniel Stenberg |
Introducing range stepping to the curl globbing support. Now you can specify step counter by adding :[num] within the brackets when specifying a range. |
00a7dda2 | 10-Nov-2005 |
Gisle Vanem |
Use config-win32.h on Windows. Fixes for djgpp. |
4dba07c3 | 10-Nov-2005 |
Gisle Vanem |
Defines moved to config-win32.h. |
4d39c6b7 | 10-Nov-2005 |
Gisle Vanem |
Easy configuration with this file. |
7d6f6158 | 10-Nov-2005 |
Gisle Vanem |
Remove generated files areslib.plg areslib.mak from CVS. |
6863dbbc | 10-Nov-2005 |
Gisle Vanem |
Remove generated files ahost.plg ahost.mak from CVS. |
28b96efd | 10-Nov-2005 |
Gisle Vanem |
Remove generated files adig.plg adig.mak from CVS. |
0f82af0f | 09-Nov-2005 |
Daniel Stenberg |
* Add step parameter to the globbing. Like [0-1000;10] that would walk the range increasing the number with 10 for every step. Requested by Jose: http://curl.haxx.se/feedback/display.cgi?
* Add step parameter to the globbing. Like [0-1000;10] that would walk the range increasing the number with 10 for every step. Requested by Jose: http://curl.haxx.se/feedback/display.cgi?id=11315662266802
show more ...
|
f0d83943 | 09-Nov-2005 |
Gisle Vanem |
Update with "new" HAVE_xx. |
f1aa4b41 | 09-Nov-2005 |
Gisle Vanem |
Replace <winsock.h> with <winsock2.h> since IPv6 support is required. |
ccdb43f7 | 09-Nov-2005 |
Gisle Vanem |
Add cvs id. |
72900f0f | 09-Nov-2005 |
Gisle Vanem |
Added Makefile.vc6. |
3ad958dd | 09-Nov-2005 |
Gisle Vanem |
I hate MS-devstudio project files. |
2c77cc90 | 09-Nov-2005 |
Gisle Vanem |
Updated for MingW. Added inet_ntop.o inet_net_pton.o bitncmp.o. Added -D'efines'. |
db4c33b4 | 09-Nov-2005 |
Gisle Vanem |
MSVC fix for 'socklen_t'. Replace <winsock.h> with <winsock2.h> + <ws2tcpip.h> since IPv6 is no longer optional (was it ever?) |
3fb04115 | 09-Nov-2005 |
Gisle Vanem |
Fixes for building with MSVC-6/7. Added inet*.c. Replace <winsock.h> with <winsock2.h> + <ws2tcpip.h> (ala libcurl since IPv6 is not optional now). |
4faaa32a | 09-Nov-2005 |
Gisle Vanem |
Fixes for building ahost with MSVC-6/7. Added inet*.c. |
cab59b4c | 08-Nov-2005 |
Daniel Stenberg |
Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since we really have no use for reverse lookups of the address. I truly hope these are the last reverse lookups we
Removed the use of AI_CANONNAME in the IPv6-enabled resolver functions since we really have no use for reverse lookups of the address. I truly hope these are the last reverse lookups we had lingering in the code!
show more ...
|
931eff89 | 08-Nov-2005 |
Daniel Stenberg |
SSPI-fix and a new mirror |
17533580 | 08-Nov-2005 |
Daniel Stenberg |
Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabled version of libcurl with different Windows versions. Current version of libcurl imports SSPI functions from secur32.dll
Dmitry Bartsevich discovered some issues in compatibilty of SSPI-enabled version of libcurl with different Windows versions. Current version of libcurl imports SSPI functions from secur32.dll. However, under Windows NT 4.0 these functions are located in security.dll, under Windows 9x - in secur32.dll and Windows 2000 and XP contains both these DLLs (security.dll just forwards calls to secur32.dll). Dmitry's patch loads proper library dynamically depending on Windows version. Function InitSecurityInterface() is used to obtain pointers to all of SSPI function in one structure. : ----------------------------------------------------------------------
show more ...
|
e0021658 | 07-Nov-2005 |
Daniel Stenberg |
27. "libcurl built with GNUTLS ignores the SSLCERT option" - Unlike Curl_ossl_connect(), the Curl_gtls_connect() function does not send the user certificate to the peer. In fact, it ignor
27. "libcurl built with GNUTLS ignores the SSLCERT option" - Unlike Curl_ossl_connect(), the Curl_gtls_connect() function does not send the user certificate to the peer. In fact, it ignores the conn->data->set.cert field completely, it always uses the anonymous credentials. See http://curl.haxx.se/bug/view.cgi?id=1348930
show more ...
|
23951ec0 | 07-Nov-2005 |
Daniel Stenberg |
mention the need for a "fake" -u when --negotiate is used |