Mon, 28 Jan 2013 17:37:18 +0100
Correct socket error reporting improvement with IPv6 portable code,
after helpful recommendation by Saúl Ibarra Corretgé on OSips devlist.
michael@13 | 1 | ## |
michael@13 | 2 | ## fsl.dhcpd -- OSSP fsl configuration |
michael@13 | 3 | ## |
michael@13 | 4 | |
michael@13 | 5 | ident (dhcpd.*)/.+ q{ |
michael@13 | 6 | prefix( |
michael@13 | 7 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@13 | 8 | ) |
michael@13 | 9 | -> { |
michael@13 | 10 | debug: file( |
michael@13 | 11 | path="@l_prefix@/var/dhcpd/log/dhcpd.log", |
michael@13 | 12 | perm=0644 |
michael@13 | 13 | ) |
michael@13 | 14 | } |
michael@13 | 15 | }; |
michael@13 | 16 | |
michael@13 | 17 | ident (dhclient.*)/.+ q{ |
michael@13 | 18 | prefix( |
michael@13 | 19 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@13 | 20 | ) |
michael@13 | 21 | -> { |
michael@13 | 22 | debug: file( |
michael@13 | 23 | path="@l_prefix@/var/dhcpd/log/dhclient.log", |
michael@13 | 24 | perm=0644 |
michael@13 | 25 | ) |
michael@13 | 26 | } |
michael@13 | 27 | }; |
michael@13 | 28 | |
michael@13 | 29 | ident (dhrelay.*)/.+ q{ |
michael@13 | 30 | prefix( |
michael@13 | 31 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@13 | 32 | ) |
michael@13 | 33 | -> { |
michael@13 | 34 | debug: file( |
michael@13 | 35 | path="@l_prefix@/var/dhcpd/log/dhrelay.log", |
michael@13 | 36 | perm=0644 |
michael@13 | 37 | ) |
michael@13 | 38 | } |
michael@13 | 39 | }; |
michael@13 | 40 | |
michael@13 | 41 | ident (omshell.*)/.+ q{ |
michael@13 | 42 | prefix( |
michael@13 | 43 | prefix="%b %d %H:%M:%S %N <%L> $1[%P]: " |
michael@13 | 44 | ) |
michael@13 | 45 | -> { |
michael@13 | 46 | debug: file( |
michael@13 | 47 | path="@l_prefix@/var/dhcpd/log/omshell.log", |
michael@13 | 48 | perm=0644 |
michael@13 | 49 | ) |
michael@13 | 50 | } |
michael@13 | 51 | }; |
michael@13 | 52 |