2011-04-16 15:30:03 +00:00
|
|
|
#ifndef PSYC_SYNTAX_H
|
|
|
|
|
|
|
|
#ifndef PSYC_LIST_SIZE_LIMIT
|
|
|
|
# define PSYC_LIST_SIZE_LIMIT 404
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* beyond this a content length must be provided */
|
|
|
|
#ifndef PSYC_CONTENT_SIZE_THRESHOLD
|
|
|
|
# define PSYC_CONTENT_SIZE_THRESHOLD 444
|
|
|
|
#endif
|
|
|
|
|
2011-04-25 12:20:13 +00:00
|
|
|
/* beyond this a modifier value length must be provided */
|
|
|
|
#ifndef PSYC_MODIFIER_SIZE_THRESHOLD
|
|
|
|
# define PSYC_MODIFIER_SIZE_THRESHOLD 404
|
|
|
|
#endif
|
|
|
|
|
2011-11-09 20:22:58 +00:00
|
|
|
#define PSYC_PACKET_DELIMITER_CHAR '|'
|
|
|
|
#define PSYC_PACKET_DELIMITER "\n|\n"
|
2011-04-16 15:30:03 +00:00
|
|
|
|
2011-05-09 07:02:15 +00:00
|
|
|
#define PSYC_SYNTAX_H
|
|
|
|
#endif
|