forked from apache/brpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing test/iobuf.proto test/iobuf_unittest.cpp
- Loading branch information
gejun
committed
Sep 4, 2017
1 parent
83affd3
commit 3720927
Showing
2 changed files
with
1,581 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package proto; | ||
|
||
enum CompressType { | ||
CompressTypeNone = 0; | ||
CompressTypeGzip = 1; | ||
CompressTypeZlib = 2; | ||
CompressTypeSnappy = 3; | ||
CompressTypeLZ4 = 4; | ||
} | ||
|
||
message Misc { | ||
required CompressType required_enum = 1; | ||
optional CompressType optional_enum = 2; | ||
repeated CompressType repeated_enum = 3; | ||
required uint64 required_uint64 = 4; | ||
optional uint64 optional_uint64 = 5; | ||
repeated uint64 repeated_uint64 = 6; | ||
required string required_string = 7; | ||
optional string optional_string = 8; | ||
repeated string repeated_string = 9; | ||
required bool required_bool = 10; | ||
optional bool optional_bool = 11; | ||
repeated bool repeated_bool = 12; | ||
required int32 required_int32 = 13; | ||
optional int32 optional_int32 = 14; | ||
repeated int32 repeated_int32 = 15; | ||
} |
Oops, something went wrong.