Quoth John Forte on Mon, Aug 13, 2007 at 09:41:15PM -0700: > A list of identifiers, each being a variable length of characters with > no restrictions on the char value. It sounds like I cannot use the > identifier as the property name so I will likely need to use an > abstraction. I didn't see any support for lists either. Did I miss an > interface?
Yes. All properties actually hold collections of values. Currently, most of them are only set with one, but if you run "svcprop -p identity/entities sysidtool:net", you should see two. To set a property with multiple values, just use scf_entry_add_value() multiple times. However, be aware that they are *collections*, and the order that you read the values is not guaranteed to match the order that you add them in. David