hipl-core team mailing list archive
-
hipl-core team
-
Mailing list archive
-
Message #00102
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
On Sun, 29 Aug 2010 17:50:12 +0200, Diego Biurrun <diego@xxxxxxxxxx> wrote:
Maybe the following part of the HACKING document is in need of
rephrasing:
Long lines (>80 characters) should be broken at suitable places
where doing so improves readability.
--->
Long lines (>80 characters) should be broken at suitable places
if and only if doing so improves readability.
Is the latter clearer?
Hum... so reformatting this (A)
ctx->transport_hdr.tcp = (struct tcphdr*)
(((char *) ip6_hdr) + sizeof(struct ip6_hdr));
to this (B)
ctx->transport_hdr.tcp = (struct tcphdr*)
(((char *) ip6_hdr) + sizeof(struct
ip6_hdr));
rather than this (C)
ctx->transport_hdr.tcp = (struct tcphdr*)
(((char *) ip6_hdr) +
sizeof(struct ip6_hdr));
is recommended even though in (B) the second line is slightly longer than
80 characters (and (A) still looks readable, imho) while in (C) it is
within the threshold?
Follow ups
References
-
[Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: noreply, 2010-08-25
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: René Hummen, 2010-08-26
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Christof Mroz, 2010-08-26
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Diego Biurrun, 2010-08-28
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Christof Mroz, 2010-08-28
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Diego Biurrun, 2010-08-29
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Christof Mroz, 2010-08-29
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Diego Biurrun, 2010-08-29
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Christof Mroz, 2010-08-29
-
Re: [Branch ~hipl-core/hipl/trunk] Rev 4915: More verbose debug messages.
From: Diego Biurrun, 2010-08-29