Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
d12d5baf
Commit
d12d5baf
authored
9 years ago
by
murgatroid99
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a couple of remaining merge issues
parent
9fa6a107
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/surface/validate_metadata.c
+3
-3
3 additions, 3 deletions
src/core/surface/validate_metadata.c
src/core/transport/metadata.c
+0
-37
0 additions, 37 deletions
src/core/transport/metadata.c
with
3 additions
and
40 deletions
src/core/surface/validate_metadata.c
+
3
−
3
View file @
d12d5baf
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
#include
<grpc/support/port_platform.h>
#include
<grpc/support/port_platform.h>
static
int
conforms_to
(
const
char
*
s
,
size_t
len
,
const
gpr_
uint8
*
legal_bits
)
{
static
int
conforms_to
(
const
char
*
s
,
size_t
len
,
const
uint8
_t
*
legal_bits
)
{
const
char
*
p
=
s
;
const
char
*
p
=
s
;
const
char
*
e
=
s
+
len
;
const
char
*
e
=
s
+
len
;
for
(;
p
!=
e
;
p
++
)
{
for
(;
p
!=
e
;
p
++
)
{
...
@@ -49,7 +49,7 @@ static int conforms_to(const char *s, size_t len, const gpr_uint8 *legal_bits) {
...
@@ -49,7 +49,7 @@ static int conforms_to(const char *s, size_t len, const gpr_uint8 *legal_bits) {
}
}
int
grpc_header_key_is_legal
(
const
char
*
key
,
size_t
length
)
{
int
grpc_header_key_is_legal
(
const
char
*
key
,
size_t
length
)
{
static
const
gpr_
uint8
legal_header_bits
[
256
/
8
]
=
{
static
const
uint8
_t
legal_header_bits
[
256
/
8
]
=
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x20
,
0xff
,
0x03
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x20
,
0xff
,
0x03
,
0x00
,
0x00
,
0x00
,
0x80
,
0xfe
,
0xff
,
0xff
,
0x07
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x80
,
0xfe
,
0xff
,
0xff
,
0x07
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
...
@@ -60,7 +60,7 @@ int grpc_header_key_is_legal(const char *key, size_t length) {
...
@@ -60,7 +60,7 @@ int grpc_header_key_is_legal(const char *key, size_t length) {
}
}
int
grpc_header_nonbin_value_is_legal
(
const
char
*
value
,
size_t
length
)
{
int
grpc_header_nonbin_value_is_legal
(
const
char
*
value
,
size_t
length
)
{
static
const
gpr_
uint8
legal_header_bits
[
256
/
8
]
=
{
static
const
uint8
_t
legal_header_bits
[
256
/
8
]
=
{
0x00
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0x00
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0x7f
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0x7f
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
...
...
This diff is collapsed.
Click to expand it.
src/core/transport/metadata.c
+
0
−
37
View file @
d12d5baf
...
@@ -688,40 +688,3 @@ gpr_slice grpc_mdstr_as_base64_encoded_and_huffman_compressed(grpc_mdstr *gs) {
...
@@ -688,40 +688,3 @@ gpr_slice grpc_mdstr_as_base64_encoded_and_huffman_compressed(grpc_mdstr *gs) {
gpr_mu_unlock
(
&
shard
->
mu
);
gpr_mu_unlock
(
&
shard
->
mu
);
return
slice
;
return
slice
;
}
}
<<<<<<<
HEAD
=======
static
int
conforms_to
(
grpc_mdstr
*
s
,
const
uint8_t
*
legal_bits
)
{
const
uint8_t
*
p
=
GPR_SLICE_START_PTR
(
s
->
slice
);
const
uint8_t
*
e
=
GPR_SLICE_END_PTR
(
s
->
slice
);
for
(;
p
!=
e
;
p
++
)
{
int
idx
=
*
p
;
int
byte
=
idx
/
8
;
int
bit
=
idx
%
8
;
if
((
legal_bits
[
byte
]
&
(
1
<<
bit
))
==
0
)
return
0
;
}
return
1
;
}
int
grpc_mdstr_is_legal_header
(
grpc_mdstr
*
s
)
{
static
const
uint8_t
legal_header_bits
[
256
/
8
]
=
{
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x60
,
0xff
,
0x03
,
0x00
,
0x00
,
0x00
,
0x80
,
0xfe
,
0xff
,
0xff
,
0x07
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
return
conforms_to
(
s
,
legal_header_bits
);
}
int
grpc_mdstr_is_legal_nonbin_header
(
grpc_mdstr
*
s
)
{
static
const
uint8_t
legal_header_bits
[
256
/
8
]
=
{
0x00
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0x7f
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
};
return
conforms_to
(
s
,
legal_header_bits
);
}
int
grpc_mdstr_is_bin_suffixed
(
grpc_mdstr
*
s
)
{
/* TODO(ctiller): consider caching this */
return
grpc_is_binary_header
((
const
char
*
)
GPR_SLICE_START_PTR
(
s
->
slice
),
GPR_SLICE_LENGTH
(
s
->
slice
));
}
>>>>>>>
master
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment