2004-11-24  Julien Lemoine <speedblue@happycoders.org>
	libsocket 1.6 released (minor release, no API change)

	* Implement close function for Win32
	* use setsockopt on Win32, this will allow Timeout on windows
	* win32 version now have all functions tested and enabled.
	
2004-11-14  Julien Lemoine <speedblue@happycoders.org>

	* New feature : return the content of buffer before 
	  end of connection (ClosedClosed exception), this allow
	  use of libsocket without any delimiter (get all content)
	* Replaced all (char*)&str by str in recv calls (was very strange)
	* Improved Windows (mingw32, cygwin and microsoft visual C++) port
	
2004-07-23  Julien Lemoine <speedblue@happycoders.org>
	libsocket 1.5 released

2004-07-21  Julien Lemoine <speedblue@happycoders.org>
	* fixed small bug in find_delimiter (possible infinite loop)

2004-06-12  Julien Lemoine <speedblue@happycoders.org>

	* TLS 1.0 and SSL 3.0 are now working (with gnutls) for client 
	  and server (tested successfuly with telnet-ssl -z ssl)
	
2004-06-06  Julien Lemoine <speedblue@happycoders.org>

	* Fixed the bug includes and SENDTO_FLAGS confusion
	* Added support for TLS (with gnutls), for the moment there is no
	support for multi-threaded program. I wait for new gcrypt lib to
	enter in Debian.
	
2004-06-02  Samuel Pasquier <samuel@happycoders.org>

	Add the support for MacOSX
	Rename SENTO_FLAGS to SENDTO_FLAGS (there was a bug with the
	windows version).

2004-06-01  Julien Lemoine <speedblue@happycoders.org>

	Code cleanup (new file : socket.hxx. to avoid code duplication)
	Allow write of \0 (do not use strlen but str.size())
	do not use MSG_NOSIGNAL on windows
	
2004-05-31  Julien Lemoine <speedblue@happycoders.org>

	libsocket 1.4 released

	Add a option to allow empty lines in text protocols.
	This is usefull for some protocols (like IMAP).
	To keep backward compatibility, this option is disabled by
	default, you can enable it with allow_empty_lines() function.
	
2004-05-30  Julien Lemoine <speedblue@happycoders.org>

	libsocket 1.3 released

	Add a flag in sendto function to avoid SIGPIPE when remote
	connection is closed. This signal is very problematic with
	multi-threaded environment. Now a simple ConnectionClosed is
	throwed instead of SIGPIPE.
	Add TcpSocket::get_ip(TcpSocket*) method to get client ip
	
2004-05-09  Julien Lemoine <speedblue@happycoders.org>
	
	libsocket 1.2 released

	Fixed two bug :
	 - read_line(*) functions : some delimiter was skiped when 
	   at start of paquet
	 - do not timeout in readn when the size is already received

2004-04-24  Julien Lemoine <speedblue@happycoders.org>
	
	libsocket 1.1 released

	this is not a major release but it contains a lot
of bugfix and a better support of delimiter for text protocols.
libsocket is now used in stable environment.

2003-07-01  Julien Lemoine <speedblue@happycoders.org>
	
	libsocket 1.0 released

	this is the first public release of libsocket
