Changeset 4093:caddac843208 in roaraudio for doc


Ignore:
Timestamp:
07/25/10 13:10:18 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

mainly done work on the hash tables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/new-cmds

    r4092 r4093  
    8888  +CF_OTTYPE  = 0x02 #(Type is a OT_* type if set, or other if unset) 
    8989 +IT_LISTEN   = 3 
    90   +:version (TODO) 
     90  +:version (uint8) 
     91  +:reserved (uint24) 
    9192  +:listensocks... (dataarray) 
    9293  +::id (uint16) 
     
    114115  +::htfunction (uint16) 
    115116  +::htdata (vardata) 
     117  +HT_NONE       = 0 
    116118  +HT_MD5        = 1 
    117119  +HT_SHA1       = 2 
    118120  +HT_RIPEMD160  = 3 
     121  +HT_MD2        = 5 
     122  +HT_TIGER      = 6 
     123  +HT_HAVAL      = 7 
    119124  +HT_SHA256     = 8 
    120125  +HT_SHA384     = 9 
    121126  +HT_SHA512     = 10 
    122127  +HT_SHA224     = 11 
     128  +HT_MD4        = 301 
     129  +HT_CRC32      = 302 #(ISO 3309, ITU-T V.42, IEEE 802.3) 
     130  +HT_RFC1510    = 303 #(HT_CRC32 as modified by RFC 1510) 
     131  +HT_RFC2440    = 304 #(poly=0x1864CFBL, init=0xB704CEL, OpenPGP) 
     132  +HT_WHIRLPOOL  = 305 
    123133  +HT_UUID       = 70000 
     134#(GTN is the Global Track Number as used by for example the RoarAudio PlayList Daemon (rpld)) 
     135#(It is a creator-runtime-unique number to identify the object.) 
    124136  +HT_GTN8       = 70001 
    125137  +HT_GTN16      = 70002 
    126   +HT_GTN32      = 70004 
    127   +HT_GTN64      = 70008 
     138  +HT_GTN32      = 70004 #("Short Global Track Number") 
     139  +HT_GTN64      = 70008 #("Long  Global Track Number") 
    128140  +HT_CLIENTID   = 71000 + OT_CLIENT   = 71001 
    129141  +HT_STREAMID   = 71000 + OT_STREAM   = 71002 
     
    136148  +HT_MSGQUEUEID = 71000 + OT_MSGQUEUE = 71009 
    137149  +HT_MSGBUSID   = 71000 + OT_MSGBUS   = 71010 
    138   +HF_NONE       = 0 #(This entry does not have anything to do with the object...) 
    139   +HF_OBJECT     = 1 #(This is an entry for exacltly this object) 
    140   +HF_PARENT     = 2 #(This is the parent object) 
    141   +HF_LOGIC      = 3 #(This is a logic group of this object) 
    142   +HF_PERMANENT  = 4 #(This can be used to acces exactly this object with a premanent address) 
    143   +HF_DEVICE     = 5 #(The device this is on or the device itself if this is a device) 
    144   +HF_DISK       = 6 #(The disk this is on, if this is a disk the same as HF_DEVICE) 
    145   +HF_SONG       = 7 #(This identifys the Song. This may for example be used with Tantalos) 
    146   +HF_APP        = 8 #(The application, device or other source generating this object) 
    147   +HF_FILE       = 9 #(The source file for this object) 
     150#(Next are article and book numers. They may be ued with HF_DISK and HF_WORK) 
     151  +HT_GTIN8      = 72001 
     152  +HT_GTIN13     = 72002 
     153  +HT_ISBN10     = 72003 
     154  +HT_ISBN13     = HT_GTIN13 #(ISBN-13 and GTIN/EAN-13 are the same) 
     155  +HF_NONE       =  0 #(This entry does not have anything to do with the object...) 
     156  +HF_OBJECT     =  1 #(This is an entry for exacltly this object) 
     157  +HF_PARENT     =  2 #(This is the parent object) 
     158  +HF_LOGIC      =  3 #(This is a logic group of this object) 
     159  +HF_PERMANENT  =  4 #(This can be used to acces exactly this object with a premanent address) 
     160  +HF_DEVICE     =  5 #(The device this is on or the device itself if this is a device) 
     161  +HF_DISK       =  6 #(The disk this is on, if this is a disk the same as HF_DEVICE) 
     162  +HF_SONG       =  7 #(This identifys the Song. This may for example be used with Tantalos) 
     163  +HF_APP        =  8 #(The application, device or other source generating this object) 
     164  +HF_FILE       =  9 #(The source file for this object) 
     165  +HT_ARTIST     = 10 #(This identifies any kind of artist/composer/interpret, to be used with Tantalos) 
     166  +HT_WORK       = 11 #(This identifies any kind of work/album/compilation, to be used with Tantalos) 
    148167 +PARA_WININFO   = 7 
    149   :(TODO) 
    150168  +:wsystype (uint8) 
    151169  +:socktype (uint8) 
Note: See TracChangeset for help on using the changeset viewer.