1. 08 10月, 2009 1 次提交
    • G
      dccp ccid-2: Overhaul CCID naming convention 1/2 · b1c00fe3
      Gerrit Renker 提交于
      This patch starts a less problematic naming convention for CCID structs.
      
      The old naming convention used 'hc{tx,rx}->ccid?hc{tx,rx}->...' as
      recurring prefixes, which made the code
       * hard to write (not easy to fit into 80 characters);
       * hard to read  (most of the space is occupied by prefixes).
      
      The new naming scheme:
       * struct entries for the TX socket are prefixed by 'tx_';
       * and those for the RX socket are prefixed by 'rx_'.
      
      The identifiers then remain distinguishable when grep-ing through the tree:
       (a) RX/TX sockets are distinguished by the naming scheme,
       (b) individual CCIDs are distinguished by filename (ccid{2,3,4}.{c,h}).
      
      This first patch implements the scheme for CCID-2.
      Signed-off-by: NGerrit Renker <gerrit@erg.abdn.ac.uk>
      Acked-by: NArnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b1c00fe3
  2. 07 10月, 2009 39 次提交