Added state logging

This commit is contained in:
Michiel Broek 2005-09-12 18:41:18 +00:00
parent e2b17e4a60
commit 4c5651fce1

View File

@ -95,6 +95,7 @@ typedef enum {CompNone, CompGZ, CompBZ2, CompPLZ} CompType;
typedef enum {CompNone, CompPLZ} CompType; typedef enum {CompNone, CompPLZ} CompType;
#endif #endif
static char *txstate[] = { (char *)"TxGNF", (char *)"TxTryR", (char *)"TxReadS", (char *)"TxWLA", (char *)"TxDone" };
static char *rxstate[] = { (char *)"RxWaitF", (char *)"RxAccF", (char *)"RxReceD", static char *rxstate[] = { (char *)"RxWaitF", (char *)"RxAccF", (char *)"RxReceD",
(char *)"RxWriteD", (char *)"RxEOB", (char *)"RxDone" }; (char *)"RxWriteD", (char *)"RxEOB", (char *)"RxDone" };
static char *opstate[] = { (char *)"No", (char *)"Can", (char *)"Want", (char *)"Active" }; static char *opstate[] = { (char *)"No", (char *)"Can", (char *)"Want", (char *)"Active" };
@ -1075,6 +1076,8 @@ TrType binkp_receiver(void)
char *buf = bp.rxbuf; char *buf = bp.rxbuf;
#endif #endif
Syslog('b', "Binkp: receiver %s", rxstate[bp.RxState]);
if (bp.RxState == RxWaitF) { if (bp.RxState == RxWaitF) {
if (! bp.GotFrame) if (! bp.GotFrame)
@ -1463,6 +1466,8 @@ TrType binkp_transmitter(void)
file_list *tsl; file_list *tsl;
static binkp_list *tmp; static binkp_list *tmp;
Syslog('b', "Binkd: transmitter %s", txstate[bp.TxState]);
if (bp.TxState == TxGNF) { if (bp.TxState == TxGNF) {
/* /*
* If we do not have a filelist yet, create one. * If we do not have a filelist yet, create one.