freebsd-dev/crypto/openssh/dispatch.h

12 lines
269 B
C
Raw Normal View History

2000-05-15 04:37:24 +00:00
enum {
DISPATCH_BLOCK,
DISPATCH_NONBLOCK
};
typedef void dispatch_fn(int type, int plen);
void dispatch_init(dispatch_fn *dflt);
void dispatch_set(int type, dispatch_fn *fn);
void dispatch_run(int mode, int *done);
void dispatch_protocol_error(int type, int plen);