aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/codegen
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-12 09:00:41 -0700
committerGravatar Craig Tiller <ctiller@google.com>2017-04-12 09:00:41 -0700
commit12d716c88ce3b4f81d1d4c7a8fdbcddf65134b62 (patch)
treeb6a80d6308c680e2330cfff796a79a436882bebc /tools/codegen
parent08aea10d02adc49041d6fb1c6ea31553c97af72d (diff)
add nl
Diffstat (limited to 'tools/codegen')
-rwxr-xr-xtools/codegen/core/gen_settings_ids.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/codegen/core/gen_settings_ids.py b/tools/codegen/core/gen_settings_ids.py
index 29c67956c7..a986138337 100755
--- a/tools/codegen/core/gen_settings_ids.py
+++ b/tools/codegen/core/gen_settings_ids.py
@@ -140,7 +140,8 @@ print >>C, """
}
*out = (grpc_chttp2_setting_id)h;
return h < GPR_ARRAY_SIZE(grpc_setting_id_to_wire_id) && grpc_setting_id_to_wire_id[h] == wire_id;
-}""" % cgargs
+}
+""" % cgargs
print >>H, """
typedef enum {
@@ -156,8 +157,9 @@ typedef struct {
grpc_chttp2_invalid_value_behavior invalid_value_behavior;
uint32_t error_value;
} grpc_chttp2_setting_parameters;
+
+extern const grpc_chttp2_setting_parameters grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS];
"""
-print >>H, "extern const grpc_chttp2_setting_parameters grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS];"
print >>C, "const grpc_chttp2_setting_parameters grpc_chttp2_settings_parameters[GRPC_CHTTP2_NUM_SETTINGS] = {"
i = 0
for decorated_setting in sorted(decorated_settings):