ostinato/common/dot3.proto
Srivats P. c7d90ff1ab - All tabs converted to spaces in all files
- .vimrc added to reflect settings used in the project
2009-12-28 08:31:28 +00:00

13 lines
165 B
Protocol Buffer

import "protocol.proto";
package OstProto;
// 802.3
message Dot3 {
optional uint32 length = 1;
}
extend Protocol {
optional Dot3 dot3 = 122;
}