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

18 lines
465 B
D
Raw Normal View History

2011-06-02 19:59:00 +00:00
module psyc.syntax;
const PSYC_LIST_SIZE_LIMIT = 404;
/* beyond this a content length must be provided */
const PSYC_CONTENT_SIZE_THRESHOLD = 444;
2011-06-02 19:59:00 +00:00
/* beyond this a modifier value length must be provided */
const PSYC_MODIFIER_SIZE_THRESHOLD = 404;
const PSYC_PACKET_DELIMITER_CHAR = '|';
const PSYC_PACKET_DELIMITER = "\n|\n";
2011-06-02 19:59:00 +00:00
/* might move into routing.h or something */
const PSYC_ROUTING = 1;
const PSYC_ROUTING_MERGE = 2;
const PSYC_ROUTING_RENDER = 4;