Re: UUID size

2013-02-22 Thread Ken Giusti
Hi Darryl, Proton represents the UUID as binary, hence the 16 byte array. For string representations, such as Ruby's, that would have to be converted to ascii/utf8 hex, and would require the 32 bytes for proper representation. In python, we have to manually convert the uuid in pn_data_t

Re: UUID size

2013-02-22 Thread Ted Ross
Also, the AMQP specification defines uuid as 16-bytes. -Ted On 02/22/2013 11:29 AM, Ken Giusti wrote: Hi Darryl, Proton represents the UUID as binary, hence the 16 byte array. For string representations, such as Ruby's, that would have to be converted to ascii/utf8 hex, and would require