{$define ipv6}\r
{$endif}\r
\r
+{-------------------------------------------------------------------------------------}\r
{there are 2 ways to use DNS in lcore: dnscore, which an entire built in DNS client, and getaddrinfo.\r
dnscore is always included on *nix to avoid libc dependency problems, but getaddrinfo is used on windows.\r
when getaddrinfo is used, there is no reason to include dnscore, and it increases the exe size,\r
\r
{-$define syncdnscore}\r
\r
+{-------------------------------------------------------------------------------------}\r
+{lcore contains a built in general purpose secure random number generator, which is used elsewhere in lcore, for\r
+example by the DNS resolver. the used random function can be hooked to point to one's own RNG as desired.\r
+it is then also possible to not include the built in RNG in the exe, which reduces code size}\r
+\r
+{-$define nolcorernd}\r
+\r
+{-------------------------------------------------------------------------------------}\r
{on windows up to XP, listening on ipv6 will not listen on ipv4, while on other platforms it does, \r
so a single listener cant get all connections for a port number, only those for one address family.\r
also it means a portable app would gave to deal with inconsistent behavior.\r
enable this option to simulate the behavior of listening on both v4 and v6}\r
\r
-{$ifdef win32}{$ifdef ipv6}\r
+{$ifdef mswindows}{$ifdef ipv6}\r
{$define secondlistener}\r
{$endif}{$endif}\r
+\r
+{-------------------------------------------------------------------------------------}\r
+{the threaded windows async dns is currently (2014-03-28) broken. it causes crashes\r
+after running for a period of time. -anders}\r
+{$ifdef mswindows}\r
+ {-$define winasyncdns}\r
+{$endif}\r
+\r
+{-------------------------------------------------------------------------------------}\r
+{btime used to set TimeBeginPeriod(1) on init, so a program was permanently in this state.\r
+doing this is not recommended, so it is no longer done by default.\r
+set this define to get the old behavior back.}\r
+{-$define btimehighrate}\r
+\r