blob: b5601d81afe863a61b698aff67ab9346f51690c1 [file] [log] [blame]
// Copyright 2011 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
package chaps;
option optimize_for = LITE_RUNTIME;
message Attribute {
required uint32 type = 1;
optional bytes value = 2;
optional sint32 length = 3;
}
message AttributeList {
repeated Attribute attribute = 1;
}