summaryrefslogtreecommitdiff
path: root/core/upb_stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/upb_stream.h')
-rw-r--r--core/upb_stream.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/upb_stream.h b/core/upb_stream.h
index 40836e9..66bfec2 100644
--- a/core/upb_stream.h
+++ b/core/upb_stream.h
@@ -39,8 +39,10 @@ typedef enum {
// Caller should continue sending values to the sink.
UPB_CONTINUE,
- // Stop processing for now; check status for details.
- UPB_STOP,
+ // Stop processing for now; check status for details. If no status was set,
+ // a generic error will be returned. If the error is resumable, processing
+ // will resume by delivering this callback again.
+ UPB_BREAK,
// Skips to the end of the current submessage (or if we are at the top
// level, skips to the end of the entire message).
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback