Commit 3ea8a4d2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as

it now will read the full data sent from servers. The SOCKS-related code was
also moved to the new lib/socks.c source file.
parent b0d3ba76
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -6,6 +6,11 @@

                                  Changelog

Daniel (23 September 2006)
- Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better
  as it now will read the full data sent from servers. The SOCKS-related code
  was also moved to the new lib/socks.c source file.

Daniel (21 September 2006)
- Added test case 531 in an attempt to repeat bug report #1561470
  (http://curl.haxx.se/bug/view.cgi?id=1561470) that is said to crash when an
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ This release includes the following changes:

This release includes the following bugfixes:

 o SOCKS proxy connection fixes
 o (FTP) a failed upload does not invalidate the control connection
 o proxy URL with user name and empty password or no password at all now work
 o fixed a socket state problem with *multi_socket()
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ OBJS = $(OBJ_DIR)\transfer.obj $(OBJ_DIR)\file.obj &
       $(OBJ_DIR)\hostsyn.obj          $(OBJ_DIR)\parsedate.obj  &
       $(OBJ_DIR)\select.obj           $(OBJ_DIR)\sslgen.obj     &
       $(OBJ_DIR)\gtls.obj             $(OBJ_DIR)\tftp.obj       &
       $(OBJ_DIR)\splay.obj
       $(OBJ_DIR)\splay.obj	       $(OBJ_DIR)\socks.obj

RESOURCE = $(OBJ_DIR)\libcurl.res

+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c \
  content_encoding.c share.c http_digest.c md5.c http_negotiate.c	\
  http_ntlm.c inet_pton.c strtoofft.c strerror.c hostares.c hostasyn.c	\
  hostip4.c hostip6.c hostsyn.c hostthre.c inet_ntop.c parsedate.c	\
  select.c gtls.c sslgen.c tftp.c splay.c strdup.c
  select.c gtls.c sslgen.c tftp.c splay.c strdup.c socks.c

HHEADERS = arpa_telnet.h netrc.h file.h timeval.h base64.h hostip.h	\
  progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h	\
@@ -18,6 +18,6 @@ HHEADERS = arpa_telnet.h netrc.h file.h timeval.h base64.h hostip.h \
  share.h md5.h http_digest.h http_negotiate.h http_ntlm.h ca-bundle.h	\
  inet_pton.h strtoofft.h strerror.h inet_ntop.h curlx.h memory.h	\
  setup.h transfer.h select.h easyif.h multiif.h parsedate.h sslgen.h   \
  gtls.h tftp.h sockaddr.h splay.h strdup.h setup_once.h
  gtls.h tftp.h sockaddr.h splay.h strdup.h setup_once.h socks.h

+1 −0
Original line number Diff line number Diff line
@@ -481,6 +481,7 @@ X_OBJS= \
	$(DIROBJ)\content_encoding.obj \
	$(DIROBJ)\tftp.obj \
	$(DIROBJ)\splay.obj \
	$(DIROBJ)\socks.obj \
	$(RESOURCE)

all : $(TARGET)
Loading