From aefce625f2fe704f93c4dbdede4dc2f3bb61f27e Mon Sep 17 00:00:00 2001 From: Marenz Date: Sun, 12 Jun 2011 14:25:22 +0200 Subject: [PATCH] added comment for PSYC_PARSE_BODY --- include/psyc/parse.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/psyc/parse.h b/include/psyc/parse.h index 9224c47..5f1ed0c 100644 --- a/include/psyc/parse.h +++ b/include/psyc/parse.h @@ -165,12 +165,15 @@ typedef enum /// Entity modifier parsing done in one go. /// Operator, name & value contains the respective parts. PSYC_PARSE_ENTITY = 6, - /// Start of an incomplete body. + /// Start of an incomplete body. /// Name contains method, value contains part of the body. + /// Used when packet length is given PSYC_PARSE_BODY_START = 7, /// Continuation of an incomplete body. + /// Used when packet length is given PSYC_PARSE_BODY_CONT = 8, /// End of an incomplete body. + /// Used when packet length is given PSYC_PARSE_BODY_END = 9, /// Body parsing done in one go, name contains method, value contains body. PSYC_PARSE_BODY = 10,