mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/* this is the development directory for
|
|
* psyc 1.0.
|
|
*
|
|
* the entire net/speck directory has to go
|
|
* when net/psyc stops being 0.9 and starts
|
|
* being 1.0.
|
|
*
|
|
* please try to make changes by #ifdef SPYC
|
|
* where possible, only do a plugin replacement
|
|
* of parse.i
|
|
*
|
|
* why do we need this directory? let me explain:
|
|
* if old and new psyc are to co-exist, we need
|
|
* differing path names for objects to assign
|
|
* to the differing ports. even if we merge the
|
|
* parsers and make them coexist by detecting the
|
|
* first incoming byte, then we still need a way
|
|
* to distinguish outgoing PSYC and SPYC.
|
|
* also, merging the two parsers is not likely or
|
|
* useful - they are so totally different in
|
|
* structure - but we can exec the proper ones
|
|
* from psyclpc or internally, after looking at
|
|
* the first byte.
|
|
*/
|
|
|
|
#ifndef SPYC
|
|
#define SPYC
|
|
|
|
#include <psyc.h>
|
|
|
|
#if __EFUN_DEFINED__(psyc_parse)
|
|
# define LIBPSYC
|
|
# include <sys/libpsyc.h>
|
|
#endif
|
|
|
|
#define PSYCPARSE_STATE_HEADER 0
|
|
#define PSYCPARSE_STATE_CONTENT 1
|
|
#define PSYCPARSE_STATE_BLOCKED 2
|
|
#define PSYCPARSE_STATE_GREET 3
|
|
|
|
#define DISPATCHERROR(reason) { \
|
|
debug_message("SPYC DISPATCH ERROR: " reason "\n"); \
|
|
croak("_error_dispatch", "dispatch error: " \
|
|
reason); \
|
|
return; \
|
|
}
|
|
|
|
#endif // SPYC
|