GRPC Core  0.10.0.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
frame_goaway.h
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2015, Google Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met:
9  *
10  * * Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * * Redistributions in binary form must reproduce the above
13  * copyright notice, this list of conditions and the following disclaimer
14  * in the documentation and/or other materials provided with the
15  * distribution.
16  * * Neither the name of Google Inc. nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
33 
34 #ifndef GRPC_INTERNAL_CORE_TRANSPORT_CHTTP2_FRAME_GOAWAY_H
35 #define GRPC_INTERNAL_CORE_TRANSPORT_CHTTP2_FRAME_GOAWAY_H
36 
39 #include <grpc/support/slice.h>
41 
42 typedef enum {
53 
54 typedef struct {
58  char *debug_data;
62 
66  grpc_chttp2_goaway_parser *parser, gpr_uint32 length, gpr_uint8 flags);
68  void *parser, grpc_chttp2_transport_parsing *transport_parsing,
69  grpc_chttp2_stream_parsing *stream_parsing, gpr_slice slice, int is_last);
70 
71 void grpc_chttp2_goaway_append(gpr_uint32 last_stream_id, gpr_uint32 error_code,
72  gpr_slice debug_data,
73  gpr_slice_buffer *slice_buffer);
74 
75 #endif /* GRPC_INTERNAL_CORE_TRANSPORT_CHTTP2_FRAME_GOAWAY_H */
gpr_uint32 last_stream_id
Definition: frame_goaway.h:56
Definition: frame_goaway.h:50
uint8_t gpr_uint8
Definition: port_platform.h:307
Definition: frame_goaway.h:43
Definition: frame_goaway.h:51
Definition: frame_goaway.h:44
grpc_chttp2_parse_error
Definition: frame.h:42
void grpc_chttp2_goaway_parser_destroy(grpc_chttp2_goaway_parser *p)
Definition: frame_goaway.c:46
uint32_t gpr_uint32
Definition: port_platform.h:309
Definition: frame_goaway.h:48
Definition: slice_buffer.h:48
Definition: frame_goaway.h:47
gpr_uint32 debug_length
Definition: frame_goaway.h:59
grpc_chttp2_goaway_parse_state state
Definition: frame_goaway.h:55
Definition: frame_goaway.h:54
gpr_uint32 error_code
Definition: frame_goaway.h:57
Definition: internal.h:215
Definition: frame_goaway.h:49
Definition: frame_goaway.h:46
char * debug_data
Definition: frame_goaway.h:58
Definition: internal.h:412
grpc_chttp2_parse_error grpc_chttp2_goaway_parser_parse(void *parser, grpc_chttp2_transport_parsing *transport_parsing, grpc_chttp2_stream_parsing *stream_parsing, gpr_slice slice, int is_last)
Definition: frame_goaway.c:65
void grpc_chttp2_goaway_parser_init(grpc_chttp2_goaway_parser *p)
Definition: frame_goaway.c:42
gpr_uint32 debug_pos
Definition: frame_goaway.h:60
void grpc_chttp2_goaway_append(gpr_uint32 last_stream_id, gpr_uint32 error_code, gpr_slice debug_data, gpr_slice_buffer *slice_buffer)
Definition: frame_goaway.c:158
Definition: slice.h:79
grpc_chttp2_goaway_parse_state
Definition: frame_goaway.h:42
Definition: frame_goaway.h:45
grpc_chttp2_parse_error grpc_chttp2_goaway_parser_begin_frame(grpc_chttp2_goaway_parser *parser, gpr_uint32 length, gpr_uint8 flags)
Definition: frame_goaway.c:50