summaryrefslogtreecommitdiffstats
path: root/listen/kissdump.c
diff options
context:
space:
mode:
authorTerry Dawson VK2KTJ <terry@animats.net>2001-09-12 13:18:43 +0000
committerTerry Dawson VK2KTJ <terry@animats.net>2001-09-12 13:18:43 +0000
commit0eb707fdcf1b87e71bb3a9eaa8472d0b05799a3d (patch)
treeb2db8371470b697e3ae8a19b1e78c7805046f2d2 /listen/kissdump.c
parent628edceba5f1485ef7c4ef30fba93b4c0c0dd955 (diff)
updated libtool, uniformly indented source, corrected small ax25mond Makefile bug
Diffstat (limited to 'listen/kissdump.c')
-rw-r--r--listen/kissdump.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/listen/kissdump.c b/listen/kissdump.c
index 0066f63..14c7909 100644
--- a/listen/kissdump.c
+++ b/listen/kissdump.c
@@ -1,4 +1,4 @@
-/* @(#) $Header: /home/ax25-cvs/ax25-apps/listen/kissdump.c,v 1.1 2001/04/10 01:58:53 csmall Exp $ */
+/* @(#) $Header: /home/ax25-cvs/ax25-apps/listen/kissdump.c,v 1.2 2001/09/12 13:18:44 terry Exp $ */
/* Tracing routines for KISS TNC
* Copyright 1991 Phil Karn, KA9Q
@@ -13,7 +13,7 @@
#define PARAM_TXTAIL 4
#define PARAM_FULLDUP 5
#define PARAM_HW 6
-#define PARAM_RETURN 15 /* Should be 255, but is ANDed with 0x0F */
+#define PARAM_RETURN 15 /* Should be 255, but is ANDed with 0x0F */
void ki_dump(unsigned char *data, int length, int hexdump)
{
@@ -22,16 +22,14 @@ void ki_dump(unsigned char *data, int length, int hexdump)
type = data[0] & 0xf;
- if (type == PARAM_DATA)
- {
+ if (type == PARAM_DATA) {
ax25_dump(data + 1, length - 1, hexdump);
return;
}
-
+
val = data[1];
-
- switch (type)
- {
+
+ switch (type) {
case PARAM_TXDELAY:
lprintf(T_KISS, "TX Delay: %lu ms\n", val * 10L);
break;
@@ -45,7 +43,8 @@ void ki_dump(unsigned char *data, int length, int hexdump)
lprintf(T_KISS, "TX Tail time: %lu ms\n", val * 10L);
break;
case PARAM_FULLDUP:
- lprintf(T_KISS, "Duplex: %s\n", val == 0 ? "Half" : "Full");
+ lprintf(T_KISS, "Duplex: %s\n",
+ val == 0 ? "Half" : "Full");
break;
case PARAM_HW:
lprintf(T_KISS, "Hardware %u\n", val);