aboutsummaryrefslogtreecommitdiffstats
path: root/pb_encode.h
diff options
context:
space:
mode:
Diffstat (limited to 'pb_encode.h')
-rw-r--r--pb_encode.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/pb_encode.h b/pb_encode.h
index d9e0336..04bdabe 100644
--- a/pb_encode.h
+++ b/pb_encode.h
@@ -32,6 +32,10 @@ extern "C" {
*/
bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
+/* Same as pb_encode, but prepends the length of the message as a varint.
+ * Corresponds to writeDelimitedTo() in Google's protobuf API.
+ */
+bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
/**************************************
* Functions for manipulating streams *