|
+# define RANDOM() ::random() +#endif // OS_NT + +// use OpenSSL RAND_pseudo_bytes() +#define USE_OPENSSL_RAND
Thunder (on uuidweak.cc, line 59) commented
7 years ago
This force the use of openSSL and not llibp4sslstub. It's not a bad thing, but from experience, I know that it might be unwanted for some. |
Reply ·0 | |
|
|
|
+# include <netportparser.h> +# include <netconnect.h> +# include <netbuffer.h> + +# include <rpcdebug.h>
Thunder (on rpc.cc, line 46) commented
7 years ago
include "rpcdebug.h" should be used here. using <> is bad practice. It force the include of the project folder, in VS at least. |
Reply ·0 | |
|
|
|
+# include <keepalive.h> +# include <debug.h> + +# include <rpc.h> +# include <rpcfwd.h>
Thunder (on rpcfwd.cc, line 20) commented
7 years ago
include "rpcfwd.h" should be used here. using <> is bad practice. It force the include of the project folder, in VS at least. |
Reply ·0 | |
|
|
|
+# include <netconnect.h> +# include <netbuffer.h> +# include <netmulti.h> + +# include <rpcdebug.h>
Thunder (on rpcmulti.cc, line 33) commented
7 years ago
include "rpcdebug.h" should be used here. using <> is bad practice. It force the include of the project folder, in VS at least. |
Reply ·0 | |
|