aboutsummaryrefslogtreecommitdiff
path: root/osc/packingOSC.h
diff options
context:
space:
mode:
Diffstat (limited to 'osc/packingOSC.h')
-rw-r--r--osc/packingOSC.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/osc/packingOSC.h b/osc/packingOSC.h
index 49e9e1e..1900226 100644
--- a/osc/packingOSC.h
+++ b/osc/packingOSC.h
@@ -23,7 +23,10 @@
#endif
#define MAX_MESG 65536 /* same as MAX_UDP_PACKET */
-#define MAX_BUNDLE_NESTING 32 /* maximum bundle depth */
+/* The maximum depth of bundles within bundles within bundles within...
+ This is the size of a static array. If you exceed this limit you'll
+ get an error message. */
+#define MAX_BUNDLE_NESTING 32
/* You may have to redefine this typedef if ints on your system
aren't 4 bytes. */
typedef unsigned int uint4;