> @@ -0,0 +1,7 @@
> +message sysctl_entry {
> + /* CTL_32, __CTL_STR */
> + required int32 type = 1;
It seems to be bad practice to keep enums as ints. Better introduce the
protobuf enum for this.
> +
> + optional int32 iarg = 2;
> + optional string sarg = 3;
> +}
>