Fixed some msvc problems with libircclient. Fixed auto start boost timer issue. Fixed irc thread termination (this time for real). Using strdup and free on MSVC causes "heap corruption error" in debug mode - use _strdup instead in libircclient.

This commit is contained in:
lotodore
2007-09-30 13:15:52 +00:00
parent c33bf3a3d6
commit 5edf38a6cb
15 changed files with 69 additions and 14 deletions
+2
View File
@@ -69,6 +69,8 @@ typedef unsigned char u_char;
#define IS_VALID_SEND(_s) ((_s) != SOCKET_ERROR)
#define IS_VALID_SELECT(_s) ((_s) != SOCKET_ERROR)
#define RECV_TIMEOUT_MSEC 50
#ifdef IPPROTO_SCTP
#define SOCKET_IPPROTO_SCTP IPPROTO_SCTP
#else