* added #define WIN32 protection for <malloc> in bdbloom

* disabled ATTACHED mode by default.
 * set reasonable default Startup parameters (had test ones before)



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4397 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-07-05 23:53:40 +00:00
parent cca2962116
commit 24351cb460
3 changed files with 11 additions and 7 deletions

View file

@ -27,8 +27,10 @@
#include <sstream>
#include <iomanip>
#include <malloc.h>
#if defined(_WIN32) || defined(__MINGW32__)
#include <malloc.h>
#endif
/* Bloom Filter implementation */