Fri, 13 Apr 2012 18:48:23 +0200
Correct various structure and architecture problems in code including:
use functions from ISO C stdio requires cstdio header,
include sockio header only in platforms where it's present,
touch random number seeder logic on X86-64 platforms as well as IA-32,
and hopefully use all 64 bits of register as it would seem that more
like 'asm("rdtsc" : "=a" (lowtick), "=d" (hitick));' is needed instead.
michael@376 | 1 | ## |
michael@376 | 2 | ## fsl.opensips -- OSSP fsl configuration |
michael@376 | 3 | ## |
michael@376 | 4 | |
michael@376 | 5 | ident .*(opensips)/.+ q{ |
michael@376 | 6 | prefix( |
michael@376 | 7 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@376 | 8 | ) |
michael@376 | 9 | -> { |
michael@376 | 10 | debug: file( |
michael@376 | 11 | path="@l_prefix@/var/opensips/opensips.log", |
michael@376 | 12 | perm=0664 |
michael@376 | 13 | ) |
michael@376 | 14 | } |
michael@376 | 15 | }; |
michael@376 | 16 |