Closed hellt closed 2 years ago
👋 @robshakir @marcushines do you guys have a view on what is required?
Just use the int value type to hold the base octal representation i.e. i.e. no base conversion should be necessary to read / write the value
755 stays 755 4755 stays 4755 and so on
thanks for clarifications!
Hi all, in gnoi file permissions are conveyed via uint32 type like shown here for example
https://github.com/openconfig/gnoi/blob/master/file/file.proto#L146
What proto doesn't clarify is that what value should be conveyed in this uint 32 field, should it be
For example, for a unix permission value of
777
, should the value be777
or511
, where511
iso777
converted to decimal?