generate_client_examples_of_bad_closing_streams.py
Go to the documentation of this file.
1 #!/usr/bin/env python2.7
2 # Copyright 2015 gRPC authors.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 
16 import os
17 import sys
18 
19 os.chdir(os.path.dirname(sys.argv[0]))
20 
21 streams = {
22  'server_hanging_response_1_header':
23  ([0, 0, 0, 4, 0, 0, 0, 0, 0] + # settings frame
24  [0, 0, 0, 1, 5, 0, 0, 0, 1] # trailers
25  ),
26  'server_hanging_response_2_header2':
27  ([0, 0, 0, 4, 0, 0, 0, 0, 0] + # settings frame
28  [0, 0, 0, 1, 4, 0, 0, 0, 1] + # headers
29  [0, 0, 0, 1, 5, 0, 0, 0, 1] # trailers
30  ),
31 }
32 
33 for name, stream in streams.items():
34  open('client_fuzzer_corpus/%s' % name, 'w').write(bytearray(stream))
write
#define write
Definition: test-fs.c:47
open
#define open
Definition: test-fs.c:46


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:59:23