aboutsummaryrefslogtreecommitdiff
path: root/ruby/ext/google/protobuf_c/protobuf.h
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2015-05-18 14:07:21 -0700
committerJoshua Haberman <jhaberman@gmail.com>2015-05-18 14:07:21 -0700
commit202f87f8de182b8d5d35c0ff0f833fcd90c7907c (patch)
treedbfe277bb1089026e1fb85a36717d642e379c570 /ruby/ext/google/protobuf_c/protobuf.h
parent96bf11be8fa2011eba9b68c56f3181568fe48539 (diff)
parentd326277397e345b5bda4a8afbd0a9d54f01b9a06 (diff)
downloadprotobuf-202f87f8de182b8d5d35c0ff0f833fcd90c7907c.tar.gz
protobuf-202f87f8de182b8d5d35c0ff0f833fcd90c7907c.tar.bz2
protobuf-202f87f8de182b8d5d35c0ff0f833fcd90c7907c.zip
Merge pull request #387 from cfallin/ruby-upb-update
Update MRI C Ruby extension to use new version of upb (with upb_env).
Diffstat (limited to 'ruby/ext/google/protobuf_c/protobuf.h')
-rw-r--r--ruby/ext/google/protobuf_c/protobuf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ruby/ext/google/protobuf_c/protobuf.h b/ruby/ext/google/protobuf_c/protobuf.h
index f9a0f958..3d619617 100644
--- a/ruby/ext/google/protobuf_c/protobuf.h
+++ b/ruby/ext/google/protobuf_c/protobuf.h
@@ -507,6 +507,10 @@ VALUE enum_resolve(VALUE self, VALUE sym);
const upb_pbdecodermethod *new_fillmsg_decodermethod(
Descriptor* descriptor, const void *owner);
+// Maximum depth allowed during encoding, to avoid stack overflows due to
+// cycles.
+#define ENCODE_MAX_NESTING 63
+
// -----------------------------------------------------------------------------
// Global map from upb {msg,enum}defs to wrapper Descriptor/EnumDescriptor
// instances.