1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

parser: renamed flags, testServer: added routing only option

This commit is contained in:
tg(x) 2011-04-30 17:07:01 +02:00
parent 3670395c97
commit 4f61f07ff2
5 changed files with 23 additions and 12 deletions

View file

@ -22,9 +22,9 @@
typedef enum
{
/// Parse only the header
PSYC_PARSE_HEADER_ONLY = 1,
/// Expects only the content part of a packet. The length of the content must fit exactly in this case
PSYC_PARSE_BEGIN_AT_CONTENT = 2,
PSYC_PARSE_ROUTING_ONLY = 1,
/// Expects only the content part of a packet. The buffer should contain the whole content in this case.
PSYC_PARSE_START_AT_CONTENT = 2,
} psycParseFlag;
/**