2009-04-27 11:51:44 -05:00
|
|
|
import "protocol.proto";
|
|
|
|
|
|
|
|
package OstProto;
|
|
|
|
|
|
|
|
// UDP
|
|
|
|
message Udp {
|
2009-12-28 02:31:28 -06:00
|
|
|
optional bool is_override_totlen = 1;
|
|
|
|
optional bool is_override_cksum = 2;
|
2009-04-27 11:51:44 -05:00
|
|
|
|
2009-12-28 02:31:28 -06:00
|
|
|
optional uint32 src_port = 3 [default = 8902];
|
|
|
|
optional uint32 dst_port = 4 [default = 80];
|
|
|
|
optional uint32 totlen = 5;
|
|
|
|
optional uint32 cksum = 6;
|
2009-04-27 11:51:44 -05:00
|
|
|
}
|
|
|
|
|
2009-08-02 09:52:34 -05:00
|
|
|
extend Protocol {
|
2009-12-28 02:31:28 -06:00
|
|
|
optional Udp udp = 141;
|
2009-04-27 11:51:44 -05:00
|
|
|
}
|