Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
37209275
Commit
37209275
authored
Sep 04, 2017
by
gejun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add missing test/iobuf.proto test/iobuf_unittest.cpp
parent
83affd3c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
iobuf.proto
test/iobuf.proto
+27
-0
iobuf_unittest.cpp
test/iobuf_unittest.cpp
+0
-0
No files found.
test/iobuf.proto
0 → 100644
View file @
37209275
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
;
}
test/iobuf_unittest.cpp
0 → 100644
View file @
37209275
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment